Python Pyramid 创建一个项目
假设Pyramid虚拟环境已经启动,并且在其中安装了Cookiecutter。创建Cookiecutter项目的最简单方式是使用预先构建的起始模板,如下所示的命令-
cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout 2.0-branch
模板已下载,用户被要求选择项目名称-
project_name [Pyramid Scaffold]: testproj
repo_name [testproj]:
然后选择模板语言。
选择 template_language −
1 - jinja2
2 - chameleon
3 - mako
Choose from 1, 2, 3 [1]: 1
由于我们熟悉jinja2模板引擎,选择1。接下来,使用SQLAlchemy作为后端。
Select backend:
1 - none
2 - sqlalchemy
3 - zodb
Choose from 1, 2, 3 [1]: 2
在 testproj 文件夹内,创建了以下文件结构:
│ development.ini
│ MANIFEST.in
│ production.ini
│ pytest.ini
│ README.txt
│ setup.py
│ testing.ini
│
├───testproj
│ │ pshell.py
│ │ routes.py
│ │ __init__.py
│ │
│ ├───alembic
│ │ │ env.py
│ │ │ script.py.mako
│ │ │
│ │ └───versions
│ │ README.txt
│ │
│ ├───models
│ │ meta.py
│ │ mymodel.py
│ │ __init__.py
│ │
│ ├───scripts
│ │ initialize_db.py
│ │ __init__.py
│ │
│ ├───static
│ │ pyramid-16x16.png
│ │ pyramid.png
│ │ theme.css
│ │
│ ├───templates
│ │ 404.jinja2
│ │ layout.jinja2
│ │ mytemplate.jinja2
│ │
│ └───views
│ default.py
│ notfound.py
│ __init__.py
│
└───tests
conftest.py
test_functional.py
test_views.py
__init__.py
外部 testproj 文件夹有一个内部 testproj 包子文件夹和测试包。内部 testproj 子文件夹是一个包含模型和脚本、子包以及静态和模板文件夹的包。
接下来,使用Alembic初始化并升级数据库。
# Generate your first revision.
alembic -c development.ini revision --autogenerate -m "init"
# Upgrade to that revision.
alembic -c development.ini upgrade head
Alembic是一个轻量级的数据库迁移工具,用于与Python的SQLAlchemy数据库工具包一起使用。外部项目文件夹现在将显示一个 testproj.sqlite 数据库。
development.ini文件为数据库提供了默认数据。通过以下命令将其填充到数据库中。
initialize_testproj_db development.ini
Cookiecutter工具还会生成测试套件放在tests包下,它们基于 PyTest 包。继续并检查测试是否通过。
Pytest
================ test session starts ======================
platform win32 -- Python 3.10.1, pytest-7.1.2, pluggy-1.0.0
rootdir: F:\pyram-env\testproj, configfile: pytest.ini, testpaths: testproj, tests
plugins: cov-3.0.0
collected 5 items
tests\test_functional.py .. [ 40%]
tests\test_views.py ... [100%]
=============== 5 passed, 20 warnings in 6.66s ===============
Cookiecutter使用Waitress服务器。通过以下命令,在本地主机的端口6543上提供Pyramid应用程序:
pserve development.ini
Starting server in PID 67700.
2022-06-19 23:43:51,308 INFO [waitress:485][MainThread] Serving on http://[::1]:6543
2022-06-19 23:43:51,308 INFO [waitress:485][MainThread] Serving on http://127.0.0.1:6543
打开浏览器,访问 http://localhost:6543/ 。新创建项目的首页将显示如下−
调试工具栏
在主页的右上角可以找到较小的Pyramid标志。点击它可以打开一个新的标签页和调试工具栏,提供关于项目的很多有用信息。
例如,在历史标题下的SQLAlchemy标签页中,显示了从 development.ini 创建的模型结构中默认数据的SQLAlchemy查询。
全局标题再次显示标签,例如Introspection、Routes等,如下所示。点击”Routes”标签查看应用程序配置中定义的路由及其匹配模式。