Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions source/content/pages/databases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,16 @@ needs.
with managed, backed up, replicated, and auto-patched MySQL instances. Cloud
SQL integrates with Google App Engine but can be used independently as well.

Object-Relational Mapping
--------------------------

Often you might want to simplify accessing your data, and prefer a simple,
object oriented way to manipulate your data, instead of raw SQL queries.

This is solved by Object Relational Mapping (ORM) applications. Sometimes these
are integrated with your framework of choice, but you might use them without
general frameworks too. Probably, the most widely used stand-alone ORM written
for Python is `SQLAlchemy <http://www.sqlalchemy.org/>`_.

Database resources
------------------
Expand Down