summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-10 19:15:08 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-10 19:15:08 +0000
commit9c4a04b68cb25efa5ac417039c0852ffe8b5b685 (patch)
tree1a052fedff9abd4cdafd8ffea7916ccfcdbe9af3
parent748e1a5396213d29dcd381b599d879a91af32a8d (diff)
automatic import of python-flask-swagger-ui
-rw-r--r--.gitignore1
-rw-r--r--python-flask-swagger-ui.spec244
-rw-r--r--sources1
3 files changed, 246 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..835839f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/flask-swagger-ui-4.11.1.tar.gz
diff --git a/python-flask-swagger-ui.spec b/python-flask-swagger-ui.spec
new file mode 100644
index 0000000..e2acb28
--- /dev/null
+++ b/python-flask-swagger-ui.spec
@@ -0,0 +1,244 @@
+%global _empty_manifest_terminate_build 0
+Name: python-flask-swagger-ui
+Version: 4.11.1
+Release: 1
+Summary: Swagger UI blueprint for Flask
+License: MIT
+URL: https://github.com/sveint/flask-swagger-ui
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/6c/80/c53f1d3758b07d4a0c86e03ce97097382e7e559ccb25d959bbaf3d17ddca/flask-swagger-ui-4.11.1.tar.gz
+BuildArch: noarch
+
+Requires: python3-flask
+
+%description
+# flask-swagger-ui
+
+Simple Flask blueprint for adding [Swagger UI](https://github.com/swagger-api/swagger-ui) to your flask application.
+
+Included Swagger UI version: 4.11.1.
+
+## Installation
+
+`pip install flask-swagger-ui`
+
+## Usage
+
+Example application:
+
+```python
+from flask import Flask
+from flask_swagger_ui import get_swaggerui_blueprint
+
+app = Flask(__name__)
+
+
+SWAGGER_URL = '/api/docs' # URL for exposing Swagger UI (without trailing '/')
+API_URL = 'http://petstore.swagger.io/v2/swagger.json' # Our API url (can of course be a local resource)
+
+# Call factory function to create our blueprint
+swaggerui_blueprint = get_swaggerui_blueprint(
+ SWAGGER_URL, # Swagger UI static files will be mapped to '{SWAGGER_URL}/dist/'
+ API_URL,
+ config={ # Swagger UI config overrides
+ 'app_name': "Test application"
+ },
+ # oauth_config={ # OAuth config. See https://github.com/swagger-api/swagger-ui#oauth2-configuration .
+ # 'clientId': "your-client-id",
+ # 'clientSecret': "your-client-secret-if-required",
+ # 'realm': "your-realms",
+ # 'appName': "your-app-name",
+ # 'scopeSeparator': " ",
+ # 'additionalQueryStringParams': {'test': "hello"}
+ # }
+)
+
+app.register_blueprint(swaggerui_blueprint)
+
+app.run()
+
+# Now point your browser to localhost:5000/api/docs/
+
+```
+
+## Configuration
+
+The blueprint supports overloading all Swagger UI configuration options that can be JSON serialized.
+See https://github.com/swagger-api/swagger-ui#parameters for options.
+
+Plugins and function parameters are not supported at this time.
+
+OAuth2 parameters can be found at https://github.com/swagger-api/swagger-ui#oauth2-configuration .
+
+
+%package -n python3-flask-swagger-ui
+Summary: Swagger UI blueprint for Flask
+Provides: python-flask-swagger-ui
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-flask-swagger-ui
+# flask-swagger-ui
+
+Simple Flask blueprint for adding [Swagger UI](https://github.com/swagger-api/swagger-ui) to your flask application.
+
+Included Swagger UI version: 4.11.1.
+
+## Installation
+
+`pip install flask-swagger-ui`
+
+## Usage
+
+Example application:
+
+```python
+from flask import Flask
+from flask_swagger_ui import get_swaggerui_blueprint
+
+app = Flask(__name__)
+
+
+SWAGGER_URL = '/api/docs' # URL for exposing Swagger UI (without trailing '/')
+API_URL = 'http://petstore.swagger.io/v2/swagger.json' # Our API url (can of course be a local resource)
+
+# Call factory function to create our blueprint
+swaggerui_blueprint = get_swaggerui_blueprint(
+ SWAGGER_URL, # Swagger UI static files will be mapped to '{SWAGGER_URL}/dist/'
+ API_URL,
+ config={ # Swagger UI config overrides
+ 'app_name': "Test application"
+ },
+ # oauth_config={ # OAuth config. See https://github.com/swagger-api/swagger-ui#oauth2-configuration .
+ # 'clientId': "your-client-id",
+ # 'clientSecret': "your-client-secret-if-required",
+ # 'realm': "your-realms",
+ # 'appName': "your-app-name",
+ # 'scopeSeparator': " ",
+ # 'additionalQueryStringParams': {'test': "hello"}
+ # }
+)
+
+app.register_blueprint(swaggerui_blueprint)
+
+app.run()
+
+# Now point your browser to localhost:5000/api/docs/
+
+```
+
+## Configuration
+
+The blueprint supports overloading all Swagger UI configuration options that can be JSON serialized.
+See https://github.com/swagger-api/swagger-ui#parameters for options.
+
+Plugins and function parameters are not supported at this time.
+
+OAuth2 parameters can be found at https://github.com/swagger-api/swagger-ui#oauth2-configuration .
+
+
+%package help
+Summary: Development documents and examples for flask-swagger-ui
+Provides: python3-flask-swagger-ui-doc
+%description help
+# flask-swagger-ui
+
+Simple Flask blueprint for adding [Swagger UI](https://github.com/swagger-api/swagger-ui) to your flask application.
+
+Included Swagger UI version: 4.11.1.
+
+## Installation
+
+`pip install flask-swagger-ui`
+
+## Usage
+
+Example application:
+
+```python
+from flask import Flask
+from flask_swagger_ui import get_swaggerui_blueprint
+
+app = Flask(__name__)
+
+
+SWAGGER_URL = '/api/docs' # URL for exposing Swagger UI (without trailing '/')
+API_URL = 'http://petstore.swagger.io/v2/swagger.json' # Our API url (can of course be a local resource)
+
+# Call factory function to create our blueprint
+swaggerui_blueprint = get_swaggerui_blueprint(
+ SWAGGER_URL, # Swagger UI static files will be mapped to '{SWAGGER_URL}/dist/'
+ API_URL,
+ config={ # Swagger UI config overrides
+ 'app_name': "Test application"
+ },
+ # oauth_config={ # OAuth config. See https://github.com/swagger-api/swagger-ui#oauth2-configuration .
+ # 'clientId': "your-client-id",
+ # 'clientSecret': "your-client-secret-if-required",
+ # 'realm': "your-realms",
+ # 'appName': "your-app-name",
+ # 'scopeSeparator': " ",
+ # 'additionalQueryStringParams': {'test': "hello"}
+ # }
+)
+
+app.register_blueprint(swaggerui_blueprint)
+
+app.run()
+
+# Now point your browser to localhost:5000/api/docs/
+
+```
+
+## Configuration
+
+The blueprint supports overloading all Swagger UI configuration options that can be JSON serialized.
+See https://github.com/swagger-api/swagger-ui#parameters for options.
+
+Plugins and function parameters are not supported at this time.
+
+OAuth2 parameters can be found at https://github.com/swagger-api/swagger-ui#oauth2-configuration .
+
+
+%prep
+%autosetup -n flask-swagger-ui-4.11.1
+
+%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-flask-swagger-ui -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 4.11.1-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..f48c115
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+24cdbf024de1d2c6877f16ca2abfe62b flask-swagger-ui-4.11.1.tar.gz