├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── _static │ └── images │ │ ├── favicon.png │ │ ├── helloworld.png │ │ ├── logo.png │ │ ├── webmanager-cn.png │ │ └── webmanager-en.png ├── api.rst ├── changelog.rst ├── conf.py ├── contributing.rst ├── faq.rst ├── index.rst ├── installation.rst ├── locale │ └── zh_CN │ │ └── LC_MESSAGES │ │ ├── api.po │ │ ├── changelog.po │ │ ├── contributing.po │ │ ├── faq.po │ │ ├── index.po │ │ ├── installation.po │ │ ├── quickstart.po │ │ ├── tutorial │ │ ├── afterword.po │ │ ├── bep.po │ │ ├── config.po │ │ ├── core.po │ │ ├── cvep.po │ │ ├── dcp.po │ │ ├── errhandler.po │ │ ├── filter.po │ │ ├── foreword.po │ │ ├── hep.po │ │ ├── index.po │ │ ├── p3.po │ │ ├── static.po │ │ ├── tcp.po │ │ ├── tep.po │ │ ├── third-party-plugin.po │ │ └── vep.po │ │ └── webmanager.po ├── quickstart.rst ├── requirements.txt ├── tutorial │ ├── afterword.rst │ ├── bep.rst │ ├── config.rst │ ├── core.rst │ ├── cvep.rst │ ├── dcp.rst │ ├── errhandler.rst │ ├── filter.rst │ ├── foreword.rst │ ├── hep.rst │ ├── index.rst │ ├── p3.rst │ ├── static.rst │ ├── tcp.rst │ ├── tep.rst │ ├── third-party-plugin.rst │ └── vep.rst └── webmanager.rst ├── examples ├── fulldemo │ ├── README.md │ ├── app.py │ ├── demo.png │ ├── plugins │ │ ├── __init__.py │ │ ├── local_demo │ │ │ ├── __init__.py │ │ │ ├── static │ │ │ │ ├── css │ │ │ │ │ └── style.css │ │ │ │ └── js │ │ │ │ │ └── hello.js │ │ │ └── templates │ │ │ │ └── localdemo │ │ │ │ └── title.html │ │ └── repeat_demo │ │ │ └── __init__.py │ └── requirements.txt └── helloworld │ ├── app.py │ └── plugins │ ├── __init__.py │ └── helloworld │ └── __init__.py ├── flask_pluginkit ├── __init__.py ├── _compat.py ├── _installer.py ├── _web.py ├── exceptions.py ├── pluginkit.py ├── static │ ├── bulma.min.css │ ├── jquery.min.js │ ├── l10n.min.js │ └── translations.ini ├── templates │ └── manager.html ├── utils.py └── version.py ├── setup.py └── tests ├── __init__.py ├── test_installer.py ├── test_pm.py └── test_utils.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/_static/images/favicon.png -------------------------------------------------------------------------------- /docs/_static/images/helloworld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/_static/images/helloworld.png -------------------------------------------------------------------------------- /docs/_static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/_static/images/logo.png -------------------------------------------------------------------------------- /docs/_static/images/webmanager-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/_static/images/webmanager-cn.png -------------------------------------------------------------------------------- /docs/_static/images/webmanager-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/_static/images/webmanager-en.png -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- 1 | FAQ 2 | === 3 | 4 | .. _faq-cov: 5 | 6 | Nothing. 7 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/api.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/changelog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/changelog.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/contributing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/contributing.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/faq.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/installation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/installation.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/quickstart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/quickstart.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/tutorial/afterword.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/tutorial/afterword.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/tutorial/bep.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/tutorial/bep.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/tutorial/config.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/tutorial/config.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/tutorial/core.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/tutorial/core.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/tutorial/cvep.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/tutorial/cvep.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/tutorial/dcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/tutorial/dcp.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/tutorial/errhandler.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/tutorial/errhandler.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/tutorial/filter.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/tutorial/filter.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/tutorial/foreword.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/tutorial/foreword.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/tutorial/hep.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/tutorial/hep.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/tutorial/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/tutorial/index.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/tutorial/p3.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/tutorial/p3.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/tutorial/static.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/tutorial/static.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/tutorial/tcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/tutorial/tcp.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/tutorial/tep.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/tutorial/tep.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/tutorial/third-party-plugin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/tutorial/third-party-plugin.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/tutorial/vep.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/tutorial/vep.po -------------------------------------------------------------------------------- /docs/locale/zh_CN/LC_MESSAGES/webmanager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/locale/zh_CN/LC_MESSAGES/webmanager.po -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/tutorial/afterword.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/tutorial/afterword.rst -------------------------------------------------------------------------------- /docs/tutorial/bep.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/tutorial/bep.rst -------------------------------------------------------------------------------- /docs/tutorial/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/tutorial/config.rst -------------------------------------------------------------------------------- /docs/tutorial/core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/tutorial/core.rst -------------------------------------------------------------------------------- /docs/tutorial/cvep.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/tutorial/cvep.rst -------------------------------------------------------------------------------- /docs/tutorial/dcp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/tutorial/dcp.rst -------------------------------------------------------------------------------- /docs/tutorial/errhandler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/tutorial/errhandler.rst -------------------------------------------------------------------------------- /docs/tutorial/filter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/tutorial/filter.rst -------------------------------------------------------------------------------- /docs/tutorial/foreword.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/tutorial/foreword.rst -------------------------------------------------------------------------------- /docs/tutorial/hep.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/tutorial/hep.rst -------------------------------------------------------------------------------- /docs/tutorial/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/tutorial/index.rst -------------------------------------------------------------------------------- /docs/tutorial/p3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/tutorial/p3.rst -------------------------------------------------------------------------------- /docs/tutorial/static.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/tutorial/static.rst -------------------------------------------------------------------------------- /docs/tutorial/tcp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/tutorial/tcp.rst -------------------------------------------------------------------------------- /docs/tutorial/tep.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/tutorial/tep.rst -------------------------------------------------------------------------------- /docs/tutorial/third-party-plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/tutorial/third-party-plugin.rst -------------------------------------------------------------------------------- /docs/tutorial/vep.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/tutorial/vep.rst -------------------------------------------------------------------------------- /docs/webmanager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/docs/webmanager.rst -------------------------------------------------------------------------------- /examples/fulldemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/examples/fulldemo/README.md -------------------------------------------------------------------------------- /examples/fulldemo/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/examples/fulldemo/app.py -------------------------------------------------------------------------------- /examples/fulldemo/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/examples/fulldemo/demo.png -------------------------------------------------------------------------------- /examples/fulldemo/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/fulldemo/plugins/local_demo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/examples/fulldemo/plugins/local_demo/__init__.py -------------------------------------------------------------------------------- /examples/fulldemo/plugins/local_demo/static/css/style.css: -------------------------------------------------------------------------------- 1 | h5 {color:red} -------------------------------------------------------------------------------- /examples/fulldemo/plugins/local_demo/static/js/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/examples/fulldemo/plugins/local_demo/static/js/hello.js -------------------------------------------------------------------------------- /examples/fulldemo/plugins/local_demo/templates/localdemo/title.html: -------------------------------------------------------------------------------- 1 |

hello local-demo(from html file)

2 | -------------------------------------------------------------------------------- /examples/fulldemo/plugins/repeat_demo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/examples/fulldemo/plugins/repeat_demo/__init__.py -------------------------------------------------------------------------------- /examples/fulldemo/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/examples/fulldemo/requirements.txt -------------------------------------------------------------------------------- /examples/helloworld/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/examples/helloworld/app.py -------------------------------------------------------------------------------- /examples/helloworld/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/helloworld/plugins/helloworld/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/examples/helloworld/plugins/helloworld/__init__.py -------------------------------------------------------------------------------- /flask_pluginkit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/flask_pluginkit/__init__.py -------------------------------------------------------------------------------- /flask_pluginkit/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/flask_pluginkit/_compat.py -------------------------------------------------------------------------------- /flask_pluginkit/_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/flask_pluginkit/_installer.py -------------------------------------------------------------------------------- /flask_pluginkit/_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/flask_pluginkit/_web.py -------------------------------------------------------------------------------- /flask_pluginkit/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/flask_pluginkit/exceptions.py -------------------------------------------------------------------------------- /flask_pluginkit/pluginkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/flask_pluginkit/pluginkit.py -------------------------------------------------------------------------------- /flask_pluginkit/static/bulma.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/flask_pluginkit/static/bulma.min.css -------------------------------------------------------------------------------- /flask_pluginkit/static/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/flask_pluginkit/static/jquery.min.js -------------------------------------------------------------------------------- /flask_pluginkit/static/l10n.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/flask_pluginkit/static/l10n.min.js -------------------------------------------------------------------------------- /flask_pluginkit/static/translations.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/flask_pluginkit/static/translations.ini -------------------------------------------------------------------------------- /flask_pluginkit/templates/manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/flask_pluginkit/templates/manager.html -------------------------------------------------------------------------------- /flask_pluginkit/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/flask_pluginkit/utils.py -------------------------------------------------------------------------------- /flask_pluginkit/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.10.2" 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf8 -*- 2 | # test examples -------------------------------------------------------------------------------- /tests/test_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/tests/test_installer.py -------------------------------------------------------------------------------- /tests/test_pm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/tests/test_pm.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staugur/Flask-PluginKit/HEAD/tests/test_utils.py --------------------------------------------------------------------------------