File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ different scenarios.
6868 scenarios/cli
6969 scenarios/gui
7070 scenarios/web
71+ scenarios/db
7172 scenarios/admin
7273 scenarios/ci
7374 scenarios/speed
Original file line number Diff line number Diff line change 1+ Databases
2+ =========
3+
4+ DB-API
5+ ------
6+
7+ The Python Database API (DB-API) defines a standard interface for Python
8+ database access modules. It's documented in `PEP 249 <http://www.python.org/dev/peps/pep-0249/ >`_.
9+ Nearly all Python database modules such as `sqlite3 `, `psycopg ` and
10+ `mysql-python ` conform to this interface.
11+
12+
13+
14+ SQLAlchemy
15+ ----------
16+
17+ `SQLAlchemy <http://www.sqlalchemy.org/ >`_ is a commonly used database toolkit. Unlike many database libraries
18+ it not only provides an ORM layer but also a generalized API for writing
19+ database-agnostic code without SQL.
20+
21+ ::
22+
23+ pip install sqlalchemy
24+
You can’t perform that action at this time.
0 commit comments