标签: python open-source python-3.x
我需要找到这种用Python编写的开源Web应用程序,它们使用的是sqlite库吗?
答案 0 :(得分:1)
见Web2py。它使用SQLite作为默认后端。
答案 1 :(得分:0)
根据SQLLite SQLite is an embedded SQL database engine. Unlike most other SQL databases, SQLite does not have a separate server process. SQLite reads and writes directly to ordinary disk files.的文档,SQLLite将使用文件系统来存储数据。您可以指定存储数据的路径。
SQLite is an embedded SQL database engine. Unlike most other SQL databases, SQLite does not have a separate server process. SQLite reads and writes directly to ordinary disk files.
Python提供了许多Web框架,如Django,Plone,Flask ......
http://www.wiki.python.org/moin/WebFrameworks