File: SOURCES.txt

package info (click to toggle)
python-flasgger 0.9.5%2Bdfsg.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 13,152 kB
  • sloc: javascript: 6,403; python: 3,665; makefile: 9; sh: 1
file content (243 lines) | stat: -rw-r--r-- 9,486 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
CODE_OF_CONDUCT.md
LICENSE
MANIFEST.in
README.md
setup.cfg
setup.py
demo_app/README.md
demo_app/__init__.py
demo_app/app.py
demo_app/requirements.txt
demo_app/update.sh
demo_app/templates/flasgger.html
demo_app/templates/index.html
etc/flasgger_package/MANIFEST.in
etc/flasgger_package/setup.py
etc/flasgger_package/build/lib/flasgger_package/__init__.py
etc/flasgger_package/build/lib/flasgger_package/package_specs.yml
etc/flasgger_package/build/lib/flasgger_package/parameters.yml
etc/flasgger_package/dist/flasgger_package-0.0.1-py2.7.egg
etc/flasgger_package/dist/flasgger_package-0.0.1-py3.7.egg
etc/flasgger_package/flasgger_package/__init__.py
etc/flasgger_package/flasgger_package/package_specs.yml
etc/flasgger_package/flasgger_package/parameters.yml
etc/flasgger_package/flasgger_package.egg-info/PKG-INFO
etc/flasgger_package/flasgger_package.egg-info/SOURCES.txt
etc/flasgger_package/flasgger_package.egg-info/dependency_links.txt
etc/flasgger_package/flasgger_package.egg-info/not-zip-safe
etc/flasgger_package/flasgger_package.egg-info/requires.txt
etc/flasgger_package/flasgger_package.egg-info/top_level.txt
etc/pythonanywhere/pythonanywhere_com_wsgi.py
examples/README.md
examples/__init__.py
examples/apispec_example.py
examples/apispec_example_uiversion3.py
examples/base_model_view.py
examples/basic_auth.py
examples/callbacks.py
examples/changelog_090.py
examples/colors.py
examples/colors_external_js.py
examples/colors_from_specdict.py
examples/colors_template.json
examples/colors_template.yaml
examples/colors_template_json.py
examples/colors_template_yaml.py
examples/colors_uiversion2.py
examples/colors_with_schema.py
examples/compat.py
examples/custom_validation_function.py
examples/decorator_package.py
examples/decorators_in_init_app.py
examples/definition_object_test.py
examples/disable_swagger_ui.py
examples/example_app.py
examples/example_blueprint.py
examples/get_schema.py
examples/jwt_auth.py
examples/lazy_string.py
examples/marshmallow_apispec.py
examples/no_routes.py
examples/not_found.yaml
examples/officer_specs.yml
examples/openapi3_examples.py
examples/package_example.py
examples/parsed_view_func.py
examples/request_body.py
examples/restful.py
examples/specs_route_example.py
examples/swag_from_merging.py
examples/swag_from_overriding.py
examples/swagger_config_2.py
examples/swagger_config_3.py
examples/swagger_config_merge.py
examples/test_refs.py
examples/test_refs_basePath_API.yaml
examples/test_validation.yml
examples/top_level_vendor_extension.py
examples/use_openapi.py
examples/user_with_id_specs.yml
examples/user_without_id_specs.yml
examples/username_specs.yml
examples/username_specs_bom.yml
examples/username_specs_no_descr.yml
examples/username_specs_no_sep.yml
examples/username_specs_utf16.yml
examples/username_specs_utf32.yml
examples/validation.py
examples/validation_error_handler.py
examples/__pycache__/__init__.cpython-37.pyc
examples/__pycache__/apispec_example.cpython-37.pyc
examples/__pycache__/apispec_example_uiversion3.cpython-37.pyc
examples/__pycache__/base_model_view.cpython-37.pyc
examples/__pycache__/basic_auth.cpython-37.pyc
examples/__pycache__/callbacks.cpython-37.pyc
examples/__pycache__/changelog_090.cpython-37.pyc
examples/__pycache__/colors.cpython-37.pyc
examples/__pycache__/colors_external_js.cpython-37.pyc
examples/__pycache__/colors_from_specdict.cpython-37.pyc
examples/__pycache__/colors_template_json.cpython-37.pyc
examples/__pycache__/colors_template_yaml.cpython-37.pyc
examples/__pycache__/colors_uiversion2.cpython-37.pyc
examples/__pycache__/colors_with_schema.cpython-37.pyc
examples/__pycache__/compat.cpython-37.pyc
examples/__pycache__/custom_validation_function.cpython-37.pyc
examples/__pycache__/decorator_package.cpython-37.pyc
examples/__pycache__/decorators_in_init_app.cpython-37.pyc
examples/__pycache__/definition_object_test.cpython-37-pytest-5.4.2.pyc
examples/__pycache__/disable_swagger_ui.cpython-37.pyc
examples/__pycache__/example_app.cpython-37.pyc
examples/__pycache__/example_blueprint.cpython-37.pyc
examples/__pycache__/get_schema.cpython-37.pyc
examples/__pycache__/jwt_auth.cpython-37.pyc
examples/__pycache__/lazy_string.cpython-37.pyc
examples/__pycache__/marshmallow_apispec.cpython-37.pyc
examples/__pycache__/no_routes.cpython-37.pyc
examples/__pycache__/openapi3_examples.cpython-37.pyc
examples/__pycache__/package_example.cpython-37.pyc
examples/__pycache__/parsed_view_func.cpython-37.pyc
examples/__pycache__/request_body.cpython-37.pyc
examples/__pycache__/restful.cpython-37.pyc
examples/__pycache__/specs_route_example.cpython-37.pyc
examples/__pycache__/swag_from_merging.cpython-37.pyc
examples/__pycache__/swag_from_overriding.cpython-37.pyc
examples/__pycache__/swagger_config_2.cpython-37.pyc
examples/__pycache__/swagger_config_3.cpython-37.pyc
examples/__pycache__/swagger_config_merge.cpython-37.pyc
examples/__pycache__/test_refs.cpython-37-pytest-5.4.2.pyc
examples/__pycache__/top_level_vendor_extension.cpython-37.pyc
examples/__pycache__/use_openapi.cpython-37.pyc
examples/__pycache__/validation.cpython-37.pyc
examples/__pycache__/validation_error_handler.cpython-37.pyc
examples/docs/template.yml
examples/docs/user.yml
examples/docs/item/get.yml
examples/docs/item/put.yml
examples/docs/items/get.yml
examples/docs/items/post.yml
flasgger/.DS_Store
flasgger/__init__.py
flasgger/base.py
flasgger/constants.py
flasgger/marshmallow_apispec.py
flasgger/utils.py
flasgger.egg-info/PKG-INFO
flasgger.egg-info/SOURCES.txt
flasgger.egg-info/dependency_links.txt
flasgger.egg-info/not-zip-safe
flasgger.egg-info/requires.txt
flasgger.egg-info/top_level.txt
flasgger/ui2/static/index.html
flasgger/ui2/static/o2c.html
flasgger/ui2/static/swagger-ui.js
flasgger/ui2/static/swagger-ui.min.js
flasgger/ui2/static/css/print.css
flasgger/ui2/static/css/reset.css
flasgger/ui2/static/css/screen.css
flasgger/ui2/static/css/style.css
flasgger/ui2/static/css/typography.css
flasgger/ui2/static/fonts/DroidSans-Bold.ttf
flasgger/ui2/static/fonts/DroidSans.ttf
flasgger/ui2/static/fonts/droid-sans-v6-latin-700.eot
flasgger/ui2/static/fonts/droid-sans-v6-latin-700.svg
flasgger/ui2/static/fonts/droid-sans-v6-latin-700.ttf
flasgger/ui2/static/fonts/droid-sans-v6-latin-700.woff
flasgger/ui2/static/fonts/droid-sans-v6-latin-700.woff2
flasgger/ui2/static/fonts/droid-sans-v6-latin-regular.eot
flasgger/ui2/static/fonts/droid-sans-v6-latin-regular.svg
flasgger/ui2/static/fonts/droid-sans-v6-latin-regular.ttf
flasgger/ui2/static/fonts/droid-sans-v6-latin-regular.woff
flasgger/ui2/static/fonts/droid-sans-v6-latin-regular.woff2
flasgger/ui2/static/images/collapse.gif
flasgger/ui2/static/images/expand.gif
flasgger/ui2/static/images/explorer_icons.png
flasgger/ui2/static/images/favicon-16x16.png
flasgger/ui2/static/images/favicon-32x32.png
flasgger/ui2/static/images/favicon.ico
flasgger/ui2/static/images/logo_small.png
flasgger/ui2/static/images/pet_store_api.png
flasgger/ui2/static/images/throbber.gif
flasgger/ui2/static/images/wordnik_api.png
flasgger/ui2/static/lang/ca.js
flasgger/ui2/static/lang/el.js
flasgger/ui2/static/lang/en.js
flasgger/ui2/static/lang/es.js
flasgger/ui2/static/lang/fr.js
flasgger/ui2/static/lang/geo.js
flasgger/ui2/static/lang/it.js
flasgger/ui2/static/lang/ja.js
flasgger/ui2/static/lang/ko-kr.js
flasgger/ui2/static/lang/pl.js
flasgger/ui2/static/lang/pt.js
flasgger/ui2/static/lang/ru.js
flasgger/ui2/static/lang/tr.js
flasgger/ui2/static/lang/translator.js
flasgger/ui2/static/lang/zh-cn.js
flasgger/ui2/static/lib/backbone-min.js
flasgger/ui2/static/lib/es5-shim.js
flasgger/ui2/static/lib/handlebars-4.0.5.js
flasgger/ui2/static/lib/highlight.9.1.0.pack.js
flasgger/ui2/static/lib/highlight.9.1.0.pack_extended.js
flasgger/ui2/static/lib/jquery-1.8.0.min.js
flasgger/ui2/static/lib/jquery.ba-bbq.min.js
flasgger/ui2/static/lib/jquery.slideto.min.js
flasgger/ui2/static/lib/jquery.wiggle.min.js
flasgger/ui2/static/lib/js-yaml.min.js
flasgger/ui2/static/lib/jsoneditor.min.js
flasgger/ui2/static/lib/lodash.min.js
flasgger/ui2/static/lib/marked.js
flasgger/ui2/static/lib/object-assign-pollyfill.js
flasgger/ui2/static/lib/sanitize-html.min.js
flasgger/ui2/static/lib/swagger-oauth.js
flasgger/ui2/templates/flasgger/index.html
flasgger/ui2/templates/flasgger/index_old.html
flasgger/ui2/templates/flasgger/o2c.html
flasgger/ui3/.DS_Store
flasgger/ui3/static/.DS_Store
flasgger/ui3/static/favicon-16x16.png
flasgger/ui3/static/favicon-32x32.png
flasgger/ui3/static/swagger-ui-bundle.js
flasgger/ui3/static/swagger-ui-bundle.js.map
flasgger/ui3/static/swagger-ui-standalone-preset.js
flasgger/ui3/static/swagger-ui-standalone-preset.js.map
flasgger/ui3/static/swagger-ui.css
flasgger/ui3/static/swagger-ui.css.map
flasgger/ui3/static/swagger-ui.js
flasgger/ui3/static/swagger-ui.js.map
flasgger/ui3/static/lib/jquery.min.js
flasgger/ui3/static/lib/jquery.min.map
flasgger/ui3/templates/.DS_Store
flasgger/ui3/templates/flasgger/body_scripts.html
flasgger/ui3/templates/flasgger/custom_head.html
flasgger/ui3/templates/flasgger/footer.html
flasgger/ui3/templates/flasgger/head.html
flasgger/ui3/templates/flasgger/index.html
flasgger/ui3/templates/flasgger/oauth2-redirect.html
flasgger/ui3/templates/flasgger/swagger.html
flasgger/ui3/templates/flasgger/top.html
tests/conftest.py
tests/test_base.py
tests/test_examples.py
tests/__pycache__/conftest.cpython-37-pytest-5.4.2.pyc
tests/__pycache__/test_base.cpython-37-pytest-5.4.2.pyc
tests/__pycache__/test_examples.cpython-37-pytest-5.4.2.pyc