Python databases

From wikinotes
Revision as of 21:02, 6 May 2018 by Will (talk | contribs) (Will moved page Python Databases to Python databases)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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