文件名称:rethinkdb-example-webpy-blog:使用 RethinkDB 的规范 web.py 博客
文件大小:23KB
文件格式:ZIP
更新时间:2024-07-02 01:27:47
Python
它是什么 使用 RethinkDB 作为后端数据库的 (非常基础的)。 此示例应用程序展示了如何使用 RethinkDB 执行简单的 CRUD 操作: 创建一个新帖子 列出博客文章(按时间戳排序) 编辑帖子 删除帖子 完整的堆栈 安装 git clone git://github.com/rethinkdb/rethinkdb-example-webpy-blog.git pip install web.py pip install rethinkdb 注意:如果您没有安装 RethinkDB,您可以按照。 运行应用程序 我们将首先通过运行设置来创建数据库webpy和表blogposts : python blog.py --setup 注意:您可以通过分别设置以下环境变量来覆盖数据库和表的默认名称: RDB_DB和RDB_TABLE 。 现在您可以运行应用程序: pyt
【文件预览】:
rethinkdb-example-webpy-blog-master
----templates()
--------view.html(140B)
--------edit.html(235B)
--------index.html(327B)
--------base.html(493B)
--------new.html(96B)
----blog.py(2KB)
----static()
--------bootstrap.min.css(101KB)
----model.py(6KB)
----.gitignore(56B)
----README.md(1KB)