Python databases

From wikinotes

Databases are basically large collections of structured information. Databases are useful, because they can be searched in very customizeable ways very quickly.

The following is not instructions on SQL, but instead instructions on how to interface with it using python.

Tools

sqlalchemy abstract interface to several database types.

Normal

pymysql mysql connector
psycopg2 postgres connector

ServerLess

pouchdb Couchdb as a file database
sqlite3 local file database