├── .gitignore ├── .vscode └── settings.json ├── README.MD ├── README.rst ├── app.py ├── business_code ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── test │ └── abc.py ├── tests.py ├── urls.py └── views.py ├── db.sqlite3 ├── demo_bottle.py ├── demo_django.py ├── django_demo ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── docs ├── 404.html ├── api-shop.png ├── assets │ ├── css │ │ └── styles.7805920a.css │ ├── img │ │ └── back-to-top.8b37f773.svg │ └── js │ │ ├── 616.c8fc0ab0.js │ │ ├── 640.757f6868.js │ │ ├── 640.757f6868.js.LICENSE.txt │ │ ├── 961.fd42e312.js │ │ ├── app.fa19070d.js │ │ ├── runtime~app.6da47921.js │ │ ├── v-08e0d16d.fd6e86c9.js │ │ ├── v-093e9b42.b5ee9f61.js │ │ ├── v-1020f180.fd82e958.js │ │ ├── v-3706649a.61f597b6.js │ │ ├── v-45b8d955.dc25e0d5.js │ │ ├── v-4822d271.377adebc.js │ │ ├── v-712e14fc.943786c4.js │ │ ├── v-8daa1a0e.d74e3c65.js │ │ ├── v-d72a4774.5d1e65ea.js │ │ └── v-f785a3ee.7f618e88.js ├── components │ ├── Api.html │ ├── ApiShop.html │ ├── SingleApiShop.html │ ├── data_format.html │ ├── func.html │ └── index.html ├── index.html ├── introduction │ └── index.html ├── logo.png ├── responseDocs.png └── start │ └── index.html ├── documents ├── docs │ ├── .vuepress │ │ ├── config.js │ │ └── public │ │ │ ├── api-shop.png │ │ │ ├── logo.png │ │ │ └── responseDocs.png │ ├── README.md │ ├── components │ │ ├── Api.md │ │ ├── ApiShop.md │ │ ├── README.md │ │ ├── SingleApiShop.md │ │ ├── data_format.md │ │ └── func.md │ ├── introduction │ │ └── README.md │ └── start │ │ └── README.md ├── package.json ├── push.bat ├── push.ps1 └── yarn.lock ├── flask_demo ├── __init__.py ├── models.py ├── test.db └── views.py ├── requirements.txt ├── src ├── MANIFEST.in ├── README.MD ├── api_shop.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ └── top_level.txt ├── api_shop │ ├── __init__.py │ ├── api_shop.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt │ ├── api_shop.py │ ├── autofill.py │ ├── data_format.py │ ├── func │ │ ├── __init__.py │ │ └── model.py │ ├── i18n.py │ ├── static │ │ └── document.html │ └── url_parse.py ├── build │ └── lib │ │ └── api_shop │ │ ├── __init__.py │ │ ├── api_shop.py │ │ ├── data_format.py │ │ ├── i18n.py │ │ └── static │ │ └── document.html └── setup.py └── static └── demo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/README.MD -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/README.rst -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/app.py -------------------------------------------------------------------------------- /business_code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /business_code/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /business_code/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/business_code/apps.py -------------------------------------------------------------------------------- /business_code/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /business_code/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/business_code/models.py -------------------------------------------------------------------------------- /business_code/test/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/business_code/test/abc.py -------------------------------------------------------------------------------- /business_code/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/business_code/tests.py -------------------------------------------------------------------------------- /business_code/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/business_code/urls.py -------------------------------------------------------------------------------- /business_code/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/business_code/views.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo_bottle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/demo_bottle.py -------------------------------------------------------------------------------- /demo_django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/demo_django.py -------------------------------------------------------------------------------- /django_demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_demo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/django_demo/settings.py -------------------------------------------------------------------------------- /django_demo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/django_demo/urls.py -------------------------------------------------------------------------------- /django_demo/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/django_demo/wsgi.py -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/api-shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/api-shop.png -------------------------------------------------------------------------------- /docs/assets/css/styles.7805920a.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/assets/css/styles.7805920a.css -------------------------------------------------------------------------------- /docs/assets/img/back-to-top.8b37f773.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/assets/img/back-to-top.8b37f773.svg -------------------------------------------------------------------------------- /docs/assets/js/616.c8fc0ab0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/assets/js/616.c8fc0ab0.js -------------------------------------------------------------------------------- /docs/assets/js/640.757f6868.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/assets/js/640.757f6868.js -------------------------------------------------------------------------------- /docs/assets/js/640.757f6868.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/assets/js/640.757f6868.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/assets/js/961.fd42e312.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/assets/js/961.fd42e312.js -------------------------------------------------------------------------------- /docs/assets/js/app.fa19070d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/assets/js/app.fa19070d.js -------------------------------------------------------------------------------- /docs/assets/js/runtime~app.6da47921.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/assets/js/runtime~app.6da47921.js -------------------------------------------------------------------------------- /docs/assets/js/v-08e0d16d.fd6e86c9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/assets/js/v-08e0d16d.fd6e86c9.js -------------------------------------------------------------------------------- /docs/assets/js/v-093e9b42.b5ee9f61.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/assets/js/v-093e9b42.b5ee9f61.js -------------------------------------------------------------------------------- /docs/assets/js/v-1020f180.fd82e958.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/assets/js/v-1020f180.fd82e958.js -------------------------------------------------------------------------------- /docs/assets/js/v-3706649a.61f597b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/assets/js/v-3706649a.61f597b6.js -------------------------------------------------------------------------------- /docs/assets/js/v-45b8d955.dc25e0d5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/assets/js/v-45b8d955.dc25e0d5.js -------------------------------------------------------------------------------- /docs/assets/js/v-4822d271.377adebc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/assets/js/v-4822d271.377adebc.js -------------------------------------------------------------------------------- /docs/assets/js/v-712e14fc.943786c4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/assets/js/v-712e14fc.943786c4.js -------------------------------------------------------------------------------- /docs/assets/js/v-8daa1a0e.d74e3c65.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/assets/js/v-8daa1a0e.d74e3c65.js -------------------------------------------------------------------------------- /docs/assets/js/v-d72a4774.5d1e65ea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/assets/js/v-d72a4774.5d1e65ea.js -------------------------------------------------------------------------------- /docs/assets/js/v-f785a3ee.7f618e88.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/assets/js/v-f785a3ee.7f618e88.js -------------------------------------------------------------------------------- /docs/components/Api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/components/Api.html -------------------------------------------------------------------------------- /docs/components/ApiShop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/components/ApiShop.html -------------------------------------------------------------------------------- /docs/components/SingleApiShop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/components/SingleApiShop.html -------------------------------------------------------------------------------- /docs/components/data_format.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/components/data_format.html -------------------------------------------------------------------------------- /docs/components/func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/components/func.html -------------------------------------------------------------------------------- /docs/components/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/components/index.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/introduction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/introduction/index.html -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/responseDocs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/responseDocs.png -------------------------------------------------------------------------------- /docs/start/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/docs/start/index.html -------------------------------------------------------------------------------- /documents/docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/documents/docs/.vuepress/config.js -------------------------------------------------------------------------------- /documents/docs/.vuepress/public/api-shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/documents/docs/.vuepress/public/api-shop.png -------------------------------------------------------------------------------- /documents/docs/.vuepress/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/documents/docs/.vuepress/public/logo.png -------------------------------------------------------------------------------- /documents/docs/.vuepress/public/responseDocs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/documents/docs/.vuepress/public/responseDocs.png -------------------------------------------------------------------------------- /documents/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/documents/docs/README.md -------------------------------------------------------------------------------- /documents/docs/components/Api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/documents/docs/components/Api.md -------------------------------------------------------------------------------- /documents/docs/components/ApiShop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/documents/docs/components/ApiShop.md -------------------------------------------------------------------------------- /documents/docs/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/documents/docs/components/README.md -------------------------------------------------------------------------------- /documents/docs/components/SingleApiShop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/documents/docs/components/SingleApiShop.md -------------------------------------------------------------------------------- /documents/docs/components/data_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/documents/docs/components/data_format.md -------------------------------------------------------------------------------- /documents/docs/components/func.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/documents/docs/components/func.md -------------------------------------------------------------------------------- /documents/docs/introduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/documents/docs/introduction/README.md -------------------------------------------------------------------------------- /documents/docs/start/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/documents/docs/start/README.md -------------------------------------------------------------------------------- /documents/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/documents/package.json -------------------------------------------------------------------------------- /documents/push.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/documents/push.bat -------------------------------------------------------------------------------- /documents/push.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/documents/push.ps1 -------------------------------------------------------------------------------- /documents/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/documents/yarn.lock -------------------------------------------------------------------------------- /flask_demo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/flask_demo/__init__.py -------------------------------------------------------------------------------- /flask_demo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/flask_demo/models.py -------------------------------------------------------------------------------- /flask_demo/test.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/flask_demo/test.db -------------------------------------------------------------------------------- /flask_demo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/flask_demo/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/src/MANIFEST.in -------------------------------------------------------------------------------- /src/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/src/README.MD -------------------------------------------------------------------------------- /src/api_shop.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/src/api_shop.egg-info/PKG-INFO -------------------------------------------------------------------------------- /src/api_shop.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/src/api_shop.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /src/api_shop.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/api_shop.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | api_shop 2 | -------------------------------------------------------------------------------- /src/api_shop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/src/api_shop/__init__.py -------------------------------------------------------------------------------- /src/api_shop/api_shop.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/src/api_shop/api_shop.egg-info/PKG-INFO -------------------------------------------------------------------------------- /src/api_shop/api_shop.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/src/api_shop/api_shop.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /src/api_shop/api_shop.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/api_shop/api_shop.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/api_shop/api_shop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/src/api_shop/api_shop.py -------------------------------------------------------------------------------- /src/api_shop/autofill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/src/api_shop/autofill.py -------------------------------------------------------------------------------- /src/api_shop/data_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/src/api_shop/data_format.py -------------------------------------------------------------------------------- /src/api_shop/func/__init__.py: -------------------------------------------------------------------------------- 1 | from . import model -------------------------------------------------------------------------------- /src/api_shop/func/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/src/api_shop/func/model.py -------------------------------------------------------------------------------- /src/api_shop/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/src/api_shop/i18n.py -------------------------------------------------------------------------------- /src/api_shop/static/document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/src/api_shop/static/document.html -------------------------------------------------------------------------------- /src/api_shop/url_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/src/api_shop/url_parse.py -------------------------------------------------------------------------------- /src/build/lib/api_shop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/src/build/lib/api_shop/__init__.py -------------------------------------------------------------------------------- /src/build/lib/api_shop/api_shop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/src/build/lib/api_shop/api_shop.py -------------------------------------------------------------------------------- /src/build/lib/api_shop/data_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/src/build/lib/api_shop/data_format.py -------------------------------------------------------------------------------- /src/build/lib/api_shop/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/src/build/lib/api_shop/i18n.py -------------------------------------------------------------------------------- /src/build/lib/api_shop/static/document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/src/build/lib/api_shop/static/document.html -------------------------------------------------------------------------------- /src/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/src/setup.py -------------------------------------------------------------------------------- /static/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcloth/api-shop/HEAD/static/demo.png --------------------------------------------------------------------------------