flasky:可以进行示例存储的Flask Web开发

时间:2024-04-05 02:37:05
【文件属性】:

文件名称:flasky:可以进行示例存储的Flask Web开发

文件大小:7KB

文件格式:ZIP

更新时间:2024-04-05 02:37:05

Python

烧瓶 创建表 (venv) $ export FLASK_APP=hello.py (venv) $ flask shell >>> from hello import db >>> db.create_all () 如果检查应用程序目录,现在将在其中看到一个名为data.sqlite的新文件。 插入行 >>> from hello import Role, User >>> admin_role = Role(name= ' Admin ' ) >>> mod_role = Role(name= ' Moderator ' ) >>> user_role = Role(name= ' User ' ) >>> user_john = User(username= ' john ' , role=admin_role) >>> user_susan = User(username= '


【文件预览】:
flasky-main
----requirements.txt(397B)
----LICENSE(1KB)
----README.md(2KB)
----hello.py(2KB)
----.editorconfig(229B)
----templates()
--------index.html(401B)
--------500.html(197B)
--------404.html(178B)
--------base.html(1KB)
----.gitignore(2KB)
----static()
--------favicon.ico(1KB)

网友评论