summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-12 01:43:30 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-12 01:43:30 +0000
commit58aabf6c99005ec7be7190cc79bbf6c46071a107 (patch)
treea5a7eadc2a3c0d6a30b246c1b2111be570ea654e
parentd1ac7dbae958c6abf43df1897b8a4a20df3cf884 (diff)
automatic import of python-swagger-ui-py
-rw-r--r--.gitignore1
-rw-r--r--python-swagger-ui-py.spec575
-rw-r--r--sources1
3 files changed, 577 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..33ab7ef 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/swagger-ui-py-22.7.13.tar.gz
diff --git a/python-swagger-ui-py.spec b/python-swagger-ui-py.spec
new file mode 100644
index 0000000..a9fb2d1
--- /dev/null
+++ b/python-swagger-ui-py.spec
@@ -0,0 +1,575 @@
+%global _empty_manifest_terminate_build 0
+Name: python-swagger-ui-py
+Version: 22.7.13
+Release: 1
+Summary: Swagger UI for Python web framework, such as Tornado, Flask, Quart, Sanic and Falcon.
+License: Apache License 2.0
+URL: https://github.com/PWZER/swagger-ui-py
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/fc/eb/854c1c9ab751af5f7260f77710c3ee9171816a506e9dd17ade4cea4a2f18/swagger-ui-py-22.7.13.tar.gz
+BuildArch: noarch
+
+Requires: python3-jinja2
+Requires: python3-PyYaml
+
+%description
+[![tests](https://github.com/PWZER/swagger-ui-py/actions/workflows/lint-and-pytest.yml/badge.svg)](https://github.com/PWZER/swagger-ui-py/actions/workflows/lint-and-pytest.yml)
+[![Version](https://badge.fury.io/gh/PWZER%2Fswagger-ui-py.svg)](https://github.com/PWZER/swagger-ui-py/tags)
+[![PyPi Version](https://img.shields.io/pypi/v/swagger-ui-py.svg)](https://pypi.org/project/swagger-ui-py/)
+[![PyPi Downloads](https://pepy.tech/badge/swagger-ui-py)](https://pepy.tech/project/swagger-ui-py)
+
+[Project Page](https://pwzer.github.io/swagger-ui-py/)
+
+# swagger-ui-py
+Swagger UI for Python web framework, such Tornado, Flask, Quart, aiohttp, Sanic and Falcon.
+
+Only support Python3.
+
+## Supported
+
+- [Tornado](https://www.tornadoweb.org/en/stable/)
+- [Flask](https://flask.palletsprojects.com/)
+- [Sanic](https://sanicframework.org/en/)
+- [AIOHTTP](https://docs.aiohttp.org/en/stable/)
+- [Quart](https://pgjones.gitlab.io/quart/)
+- [Starlette](https://www.starlette.io/)
+- [Falcon](https://falcon.readthedocs.io/en/stable/)
+- [Bottle](https://bottlepy.org/docs/dev/)
+- [Chalice](https://aws.github.io/chalice/index.html)
+
+You can print supported list use command
+
+```bash
+python3 -c "from swagger_ui import supported_list; print(supported_list)"
+```
+
+> If you want to add supported frameworks, you can refer to [Flask Support](/swagger_ui/handlers/flask.py) or [Falcon Support](/swagger_ui/handlers/falcon.py), Implement the corresponding `handler` and `match` function.
+
+## Usage
+
+- Install
+
+ ```bash
+ pip3 install swagger-ui-py
+ ```
+
+- Code
+
+ Using the local config file
+
+ ```python
+ from swagger_ui import api_doc
+ api_doc(app, config_path='./config/test.yaml', url_prefix='/api/doc', title='API doc')
+ ```
+
+ Or using config url, but need to suport [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing)
+
+ ```python
+ api_doc(app, config_url='https://petstore.swagger.io/v2/swagger.json', url_prefix='/api/doc', title='API doc')
+ ```
+
+ Or using the config spec string
+
+ ```python
+ from swagger_ui import api_doc
+ spec_string = '{"openapi":"3.0.1","info":{"title":"python-swagger-ui test api","description":"python-swagger-ui test api","version":"1.0.0"},"servers":[{"url":"http://127.0.0.1:8989/api"}],"tags":[{"name":"default","description":"default tag"}],"paths":{"/hello/world":{"get":{"tags":["default"],"summary":"output hello world.","responses":{"200":{"description":"OK","content":{"application/text":{"schema":{"type":"object","example":"Hello World!!!"}}}}}}}},"components":{}}'
+
+ api_doc(app, config_spec=spec_string, url_prefix='/api/doc', title='API doc')
+ ```
+
+ Or using the config dict
+
+ ```python
+ from swagger_ui import api_doc
+ config = {"openapi":"3.0.1","info":{"title":"python-swagger-ui test api","description":"python-swagger-ui test api","version":"1.0.0"},"servers":[{"url":"http://127.0.0.1:8989/api"}],"tags":[{"name":"default","description":"default tag"}],"paths":{"/hello/world":{"get":{"tags":["default"],"summary":"output hello world.","responses":{"200":{"description":"OK","content":{"application/text":{"schema":{"type":"object","example":"Hello World!!!"}}}}}}}},"components":{}}
+
+ api_doc(app, config=config, url_prefix='/api/doc', title='API doc')
+ ```
+
+ And suport config file with editor
+
+ ```python
+ api_doc(app, config_path='./config/test.yaml', editor=True)
+ ```
+
+ And keep the old way
+
+ ```python
+ # for Tornado
+ from swagger_ui import tornado_api_doc
+ tornado_api_doc(app, config_path='./conf/test.yaml', url_prefix='/api/doc', title='API doc')
+
+ # for Sanic
+ from swagger_ui import sanic_api_doc
+ sanic_api_doc(app, config_path='./conf/test.yaml', url_prefix='/api/doc', title='API doc')
+
+ # for Flask
+ from swagger_ui import flask_api_doc
+ flask_api_doc(app, config_path='./conf/test.yaml', url_prefix='/api/doc', title='API doc')
+
+ # for Quart
+ from swagger_ui import quart_api_doc
+ quart_api_doc(app, config_path='./conf/test.yaml', url_prefix='/api/doc', title='API doc')
+
+ # for aiohttp
+ from swagger_ui import aiohttp_api_doc
+ aiohttp_api_doc(app, config_path='./conf/test.yaml', url_prefix='/api/doc', title='API doc')
+
+ # for Falcon
+ from swagger_ui import falcon_api_doc
+ falcon_api_doc(app, config_path='./conf/test.yaml', url_prefix='/api/doc', title='API doc')
+ ```
+
+- Edit `Swagger` config file (JSON or YAML)
+
+ Please see [https://swagger.io/resources/open-api/](https://swagger.io/resources/open-api/).
+
+- Access
+
+ Open `http://<host>:<port>/api/doc/editor`, you can edit api doc config file.
+
+ Open `http://<host>:<port>/api/doc` view api doc.
+
+## SwaggerUI Configuration
+
+ You can configure Swagger parameters using the dictionary, Both key and value are of type str, if value is JavaScript string, you need to wrap the quotes around it.
+ Such as `"layout": "\"StandaloneLayout\""`.
+
+ ```python
+ parameters = {
+ "deepLinking": "true",
+ "displayRequestDuration": "true",
+ "layout": "\"StandaloneLayout\"",
+ "plugins": "[SwaggerUIBundle.plugins.DownloadUrl]",
+ "presets": "[SwaggerUIBundle.presets.apis, SwaggerUIStandalonePreset]",
+ }
+ api_doc(app, config_path='./config/test.yaml', parameters=parameters)
+ ```
+
+ For details about parameters configuration, see the official documentation [Parameters Configuration](https://swagger.io/docs/open-source-tools/swagger-ui/usage/configuration/).
+
+## OAuth2 Configuration
+
+ The format is similar to `parameters`.
+
+ ```python
+ oauth2_config = {
+ "clientId": "\"your-client-id\"",
+ "clientSecret": "\"your-client-secret-if-required\"",
+ "realm": "\"your-realms\"",
+ "appName": "\"your-app-name\"",
+ "scopeSeparator": "\" \"",
+ "scopes": "\"openid profile\"",
+ "additionalQueryStringParams": "{test: \"hello\"}",
+ "usePkceWithAuthorizationCodeGrant": True,
+ }
+ api_doc(app, config_path='./config/test.yaml', oauth2_config=oauth2_config)
+ ```
+
+ For details about OAuth2 configuration, see the official documentation [OAuth2 Configuration](https://swagger.io/docs/open-source-tools/swagger-ui/usage/oauth2/).
+
+## Swagger UI
+Swagger UI version is `v4.12.0`. see [https://github.com/swagger-api/swagger-ui](https://github.com/swagger-api/swagger-ui).
+
+## Swagger Editor
+Swagger Editor version is `v4.2.9`. see [https://github.com/swagger-api/swagger-editor](https://github.com/swagger-api/swagger-editor).
+
+## Update
+You can update swagger ui and swagger editor version with
+
+```bash
+python3 tools/update.py --ui --editor
+```
+
+
+%package -n python3-swagger-ui-py
+Summary: Swagger UI for Python web framework, such as Tornado, Flask, Quart, Sanic and Falcon.
+Provides: python-swagger-ui-py
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-swagger-ui-py
+[![tests](https://github.com/PWZER/swagger-ui-py/actions/workflows/lint-and-pytest.yml/badge.svg)](https://github.com/PWZER/swagger-ui-py/actions/workflows/lint-and-pytest.yml)
+[![Version](https://badge.fury.io/gh/PWZER%2Fswagger-ui-py.svg)](https://github.com/PWZER/swagger-ui-py/tags)
+[![PyPi Version](https://img.shields.io/pypi/v/swagger-ui-py.svg)](https://pypi.org/project/swagger-ui-py/)
+[![PyPi Downloads](https://pepy.tech/badge/swagger-ui-py)](https://pepy.tech/project/swagger-ui-py)
+
+[Project Page](https://pwzer.github.io/swagger-ui-py/)
+
+# swagger-ui-py
+Swagger UI for Python web framework, such Tornado, Flask, Quart, aiohttp, Sanic and Falcon.
+
+Only support Python3.
+
+## Supported
+
+- [Tornado](https://www.tornadoweb.org/en/stable/)
+- [Flask](https://flask.palletsprojects.com/)
+- [Sanic](https://sanicframework.org/en/)
+- [AIOHTTP](https://docs.aiohttp.org/en/stable/)
+- [Quart](https://pgjones.gitlab.io/quart/)
+- [Starlette](https://www.starlette.io/)
+- [Falcon](https://falcon.readthedocs.io/en/stable/)
+- [Bottle](https://bottlepy.org/docs/dev/)
+- [Chalice](https://aws.github.io/chalice/index.html)
+
+You can print supported list use command
+
+```bash
+python3 -c "from swagger_ui import supported_list; print(supported_list)"
+```
+
+> If you want to add supported frameworks, you can refer to [Flask Support](/swagger_ui/handlers/flask.py) or [Falcon Support](/swagger_ui/handlers/falcon.py), Implement the corresponding `handler` and `match` function.
+
+## Usage
+
+- Install
+
+ ```bash
+ pip3 install swagger-ui-py
+ ```
+
+- Code
+
+ Using the local config file
+
+ ```python
+ from swagger_ui import api_doc
+ api_doc(app, config_path='./config/test.yaml', url_prefix='/api/doc', title='API doc')
+ ```
+
+ Or using config url, but need to suport [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing)
+
+ ```python
+ api_doc(app, config_url='https://petstore.swagger.io/v2/swagger.json', url_prefix='/api/doc', title='API doc')
+ ```
+
+ Or using the config spec string
+
+ ```python
+ from swagger_ui import api_doc
+ spec_string = '{"openapi":"3.0.1","info":{"title":"python-swagger-ui test api","description":"python-swagger-ui test api","version":"1.0.0"},"servers":[{"url":"http://127.0.0.1:8989/api"}],"tags":[{"name":"default","description":"default tag"}],"paths":{"/hello/world":{"get":{"tags":["default"],"summary":"output hello world.","responses":{"200":{"description":"OK","content":{"application/text":{"schema":{"type":"object","example":"Hello World!!!"}}}}}}}},"components":{}}'
+
+ api_doc(app, config_spec=spec_string, url_prefix='/api/doc', title='API doc')
+ ```
+
+ Or using the config dict
+
+ ```python
+ from swagger_ui import api_doc
+ config = {"openapi":"3.0.1","info":{"title":"python-swagger-ui test api","description":"python-swagger-ui test api","version":"1.0.0"},"servers":[{"url":"http://127.0.0.1:8989/api"}],"tags":[{"name":"default","description":"default tag"}],"paths":{"/hello/world":{"get":{"tags":["default"],"summary":"output hello world.","responses":{"200":{"description":"OK","content":{"application/text":{"schema":{"type":"object","example":"Hello World!!!"}}}}}}}},"components":{}}
+
+ api_doc(app, config=config, url_prefix='/api/doc', title='API doc')
+ ```
+
+ And suport config file with editor
+
+ ```python
+ api_doc(app, config_path='./config/test.yaml', editor=True)
+ ```
+
+ And keep the old way
+
+ ```python
+ # for Tornado
+ from swagger_ui import tornado_api_doc
+ tornado_api_doc(app, config_path='./conf/test.yaml', url_prefix='/api/doc', title='API doc')
+
+ # for Sanic
+ from swagger_ui import sanic_api_doc
+ sanic_api_doc(app, config_path='./conf/test.yaml', url_prefix='/api/doc', title='API doc')
+
+ # for Flask
+ from swagger_ui import flask_api_doc
+ flask_api_doc(app, config_path='./conf/test.yaml', url_prefix='/api/doc', title='API doc')
+
+ # for Quart
+ from swagger_ui import quart_api_doc
+ quart_api_doc(app, config_path='./conf/test.yaml', url_prefix='/api/doc', title='API doc')
+
+ # for aiohttp
+ from swagger_ui import aiohttp_api_doc
+ aiohttp_api_doc(app, config_path='./conf/test.yaml', url_prefix='/api/doc', title='API doc')
+
+ # for Falcon
+ from swagger_ui import falcon_api_doc
+ falcon_api_doc(app, config_path='./conf/test.yaml', url_prefix='/api/doc', title='API doc')
+ ```
+
+- Edit `Swagger` config file (JSON or YAML)
+
+ Please see [https://swagger.io/resources/open-api/](https://swagger.io/resources/open-api/).
+
+- Access
+
+ Open `http://<host>:<port>/api/doc/editor`, you can edit api doc config file.
+
+ Open `http://<host>:<port>/api/doc` view api doc.
+
+## SwaggerUI Configuration
+
+ You can configure Swagger parameters using the dictionary, Both key and value are of type str, if value is JavaScript string, you need to wrap the quotes around it.
+ Such as `"layout": "\"StandaloneLayout\""`.
+
+ ```python
+ parameters = {
+ "deepLinking": "true",
+ "displayRequestDuration": "true",
+ "layout": "\"StandaloneLayout\"",
+ "plugins": "[SwaggerUIBundle.plugins.DownloadUrl]",
+ "presets": "[SwaggerUIBundle.presets.apis, SwaggerUIStandalonePreset]",
+ }
+ api_doc(app, config_path='./config/test.yaml', parameters=parameters)
+ ```
+
+ For details about parameters configuration, see the official documentation [Parameters Configuration](https://swagger.io/docs/open-source-tools/swagger-ui/usage/configuration/).
+
+## OAuth2 Configuration
+
+ The format is similar to `parameters`.
+
+ ```python
+ oauth2_config = {
+ "clientId": "\"your-client-id\"",
+ "clientSecret": "\"your-client-secret-if-required\"",
+ "realm": "\"your-realms\"",
+ "appName": "\"your-app-name\"",
+ "scopeSeparator": "\" \"",
+ "scopes": "\"openid profile\"",
+ "additionalQueryStringParams": "{test: \"hello\"}",
+ "usePkceWithAuthorizationCodeGrant": True,
+ }
+ api_doc(app, config_path='./config/test.yaml', oauth2_config=oauth2_config)
+ ```
+
+ For details about OAuth2 configuration, see the official documentation [OAuth2 Configuration](https://swagger.io/docs/open-source-tools/swagger-ui/usage/oauth2/).
+
+## Swagger UI
+Swagger UI version is `v4.12.0`. see [https://github.com/swagger-api/swagger-ui](https://github.com/swagger-api/swagger-ui).
+
+## Swagger Editor
+Swagger Editor version is `v4.2.9`. see [https://github.com/swagger-api/swagger-editor](https://github.com/swagger-api/swagger-editor).
+
+## Update
+You can update swagger ui and swagger editor version with
+
+```bash
+python3 tools/update.py --ui --editor
+```
+
+
+%package help
+Summary: Development documents and examples for swagger-ui-py
+Provides: python3-swagger-ui-py-doc
+%description help
+[![tests](https://github.com/PWZER/swagger-ui-py/actions/workflows/lint-and-pytest.yml/badge.svg)](https://github.com/PWZER/swagger-ui-py/actions/workflows/lint-and-pytest.yml)
+[![Version](https://badge.fury.io/gh/PWZER%2Fswagger-ui-py.svg)](https://github.com/PWZER/swagger-ui-py/tags)
+[![PyPi Version](https://img.shields.io/pypi/v/swagger-ui-py.svg)](https://pypi.org/project/swagger-ui-py/)
+[![PyPi Downloads](https://pepy.tech/badge/swagger-ui-py)](https://pepy.tech/project/swagger-ui-py)
+
+[Project Page](https://pwzer.github.io/swagger-ui-py/)
+
+# swagger-ui-py
+Swagger UI for Python web framework, such Tornado, Flask, Quart, aiohttp, Sanic and Falcon.
+
+Only support Python3.
+
+## Supported
+
+- [Tornado](https://www.tornadoweb.org/en/stable/)
+- [Flask](https://flask.palletsprojects.com/)
+- [Sanic](https://sanicframework.org/en/)
+- [AIOHTTP](https://docs.aiohttp.org/en/stable/)
+- [Quart](https://pgjones.gitlab.io/quart/)
+- [Starlette](https://www.starlette.io/)
+- [Falcon](https://falcon.readthedocs.io/en/stable/)
+- [Bottle](https://bottlepy.org/docs/dev/)
+- [Chalice](https://aws.github.io/chalice/index.html)
+
+You can print supported list use command
+
+```bash
+python3 -c "from swagger_ui import supported_list; print(supported_list)"
+```
+
+> If you want to add supported frameworks, you can refer to [Flask Support](/swagger_ui/handlers/flask.py) or [Falcon Support](/swagger_ui/handlers/falcon.py), Implement the corresponding `handler` and `match` function.
+
+## Usage
+
+- Install
+
+ ```bash
+ pip3 install swagger-ui-py
+ ```
+
+- Code
+
+ Using the local config file
+
+ ```python
+ from swagger_ui import api_doc
+ api_doc(app, config_path='./config/test.yaml', url_prefix='/api/doc', title='API doc')
+ ```
+
+ Or using config url, but need to suport [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing)
+
+ ```python
+ api_doc(app, config_url='https://petstore.swagger.io/v2/swagger.json', url_prefix='/api/doc', title='API doc')
+ ```
+
+ Or using the config spec string
+
+ ```python
+ from swagger_ui import api_doc
+ spec_string = '{"openapi":"3.0.1","info":{"title":"python-swagger-ui test api","description":"python-swagger-ui test api","version":"1.0.0"},"servers":[{"url":"http://127.0.0.1:8989/api"}],"tags":[{"name":"default","description":"default tag"}],"paths":{"/hello/world":{"get":{"tags":["default"],"summary":"output hello world.","responses":{"200":{"description":"OK","content":{"application/text":{"schema":{"type":"object","example":"Hello World!!!"}}}}}}}},"components":{}}'
+
+ api_doc(app, config_spec=spec_string, url_prefix='/api/doc', title='API doc')
+ ```
+
+ Or using the config dict
+
+ ```python
+ from swagger_ui import api_doc
+ config = {"openapi":"3.0.1","info":{"title":"python-swagger-ui test api","description":"python-swagger-ui test api","version":"1.0.0"},"servers":[{"url":"http://127.0.0.1:8989/api"}],"tags":[{"name":"default","description":"default tag"}],"paths":{"/hello/world":{"get":{"tags":["default"],"summary":"output hello world.","responses":{"200":{"description":"OK","content":{"application/text":{"schema":{"type":"object","example":"Hello World!!!"}}}}}}}},"components":{}}
+
+ api_doc(app, config=config, url_prefix='/api/doc', title='API doc')
+ ```
+
+ And suport config file with editor
+
+ ```python
+ api_doc(app, config_path='./config/test.yaml', editor=True)
+ ```
+
+ And keep the old way
+
+ ```python
+ # for Tornado
+ from swagger_ui import tornado_api_doc
+ tornado_api_doc(app, config_path='./conf/test.yaml', url_prefix='/api/doc', title='API doc')
+
+ # for Sanic
+ from swagger_ui import sanic_api_doc
+ sanic_api_doc(app, config_path='./conf/test.yaml', url_prefix='/api/doc', title='API doc')
+
+ # for Flask
+ from swagger_ui import flask_api_doc
+ flask_api_doc(app, config_path='./conf/test.yaml', url_prefix='/api/doc', title='API doc')
+
+ # for Quart
+ from swagger_ui import quart_api_doc
+ quart_api_doc(app, config_path='./conf/test.yaml', url_prefix='/api/doc', title='API doc')
+
+ # for aiohttp
+ from swagger_ui import aiohttp_api_doc
+ aiohttp_api_doc(app, config_path='./conf/test.yaml', url_prefix='/api/doc', title='API doc')
+
+ # for Falcon
+ from swagger_ui import falcon_api_doc
+ falcon_api_doc(app, config_path='./conf/test.yaml', url_prefix='/api/doc', title='API doc')
+ ```
+
+- Edit `Swagger` config file (JSON or YAML)
+
+ Please see [https://swagger.io/resources/open-api/](https://swagger.io/resources/open-api/).
+
+- Access
+
+ Open `http://<host>:<port>/api/doc/editor`, you can edit api doc config file.
+
+ Open `http://<host>:<port>/api/doc` view api doc.
+
+## SwaggerUI Configuration
+
+ You can configure Swagger parameters using the dictionary, Both key and value are of type str, if value is JavaScript string, you need to wrap the quotes around it.
+ Such as `"layout": "\"StandaloneLayout\""`.
+
+ ```python
+ parameters = {
+ "deepLinking": "true",
+ "displayRequestDuration": "true",
+ "layout": "\"StandaloneLayout\"",
+ "plugins": "[SwaggerUIBundle.plugins.DownloadUrl]",
+ "presets": "[SwaggerUIBundle.presets.apis, SwaggerUIStandalonePreset]",
+ }
+ api_doc(app, config_path='./config/test.yaml', parameters=parameters)
+ ```
+
+ For details about parameters configuration, see the official documentation [Parameters Configuration](https://swagger.io/docs/open-source-tools/swagger-ui/usage/configuration/).
+
+## OAuth2 Configuration
+
+ The format is similar to `parameters`.
+
+ ```python
+ oauth2_config = {
+ "clientId": "\"your-client-id\"",
+ "clientSecret": "\"your-client-secret-if-required\"",
+ "realm": "\"your-realms\"",
+ "appName": "\"your-app-name\"",
+ "scopeSeparator": "\" \"",
+ "scopes": "\"openid profile\"",
+ "additionalQueryStringParams": "{test: \"hello\"}",
+ "usePkceWithAuthorizationCodeGrant": True,
+ }
+ api_doc(app, config_path='./config/test.yaml', oauth2_config=oauth2_config)
+ ```
+
+ For details about OAuth2 configuration, see the official documentation [OAuth2 Configuration](https://swagger.io/docs/open-source-tools/swagger-ui/usage/oauth2/).
+
+## Swagger UI
+Swagger UI version is `v4.12.0`. see [https://github.com/swagger-api/swagger-ui](https://github.com/swagger-api/swagger-ui).
+
+## Swagger Editor
+Swagger Editor version is `v4.2.9`. see [https://github.com/swagger-api/swagger-editor](https://github.com/swagger-api/swagger-editor).
+
+## Update
+You can update swagger ui and swagger editor version with
+
+```bash
+python3 tools/update.py --ui --editor
+```
+
+
+%prep
+%autosetup -n swagger-ui-py-22.7.13
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-swagger-ui-py -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed Apr 12 2023 Python_Bot <Python_Bot@openeuler.org> - 22.7.13-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..03fbed0
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+5d4ed8d6341a17300aae0ad4e248e2ad swagger-ui-py-22.7.13.tar.gz