文件名称:Flask_Template:使用Python和Flask的示例项目
文件大小:27KB
文件格式:ZIP
更新时间:2024-04-14 06:34:41
python flask python-3-6 Python
烧瓶模板 这是应用程序的模板! 我写了这篇文章,所以我可以有一个快速准备好的模板来站立一个api来与其他项目打交道。 怎么跑 克隆此存储库后,您需要将依赖项安装在requirements.txt文件中。 我强烈建议使用虚拟环境将依赖项与您可能拥有的其他项目隔离开。 (在阅读有关python中虚拟环境的更多信息,我个人使用virtualenv ) 一旦安装了依赖项,您所要做的就是运行python Boot.py ,然后您应该运行一个开发服务器,现在您可以准备好破解这些代码! 注意:要运行非开发服务器,请使用 。 它被列为依赖项,因此,如果需要,您可以运行gunicorn Boot:app来与gunicorn Boot:app一起运行该应用程序。 如何使用 我喜欢在开发过程中使用与应用程序进行交互。 您可以使用curl或可能想到的任何其他http客户端,但Postman只是我个人的喜好
【文件预览】:
Flask_Template-master
----blueprints()
--------Responses.py(1KB)
--------defaultBlueprint()
--------__init__.py(0B)
--------jsonApiBlueprint()
--------htmlBlueprint()
----.gitignore(2KB)
----tests()
--------test_PostgresLibrary.py(693B)
--------conftest.py(459B)
--------test_HtmlBlueprint.py(359B)
--------test_Postgres.py(325B)
--------test_DefaultBlueprint.py(145B)
--------__init__.py(0B)
--------test_JsonApiBlueprint.py(770B)
----Procfile(23B)
----static()
--------styles()
----docs()
--------endpoints()
----LICENSE(1KB)
----SECURITY.md(625B)
----Flask_Template.postman_collection.json(2KB)
----Readme.md(2KB)
----CONTRIBUTING.md(2KB)
----CODE_OF_CONDUCT.md(3KB)
----Boot.py(827B)
----scripts()
--------db()
----config()
--------Config.py(725B)
--------DefaultConfig.json(41B)
--------ProductionConfig.json(42B)
----requirements.txt(293B)
----helperModels()
--------Success.py(342B)
--------__init__.py(0B)
--------Attempt.py(293B)
--------Failure.py(294B)
----.travis.yml(1KB)
----templates()
--------Param.html(131B)
--------Index.html(273B)
----postgres()
--------Postgres.py(2KB)