Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 703 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 703 Bytes

Python Databases In One Place

A collection of different database implementation code templates with Python such as Postgres, MySQL and sqlite3

PostgreSQL

This uses a library called psycopg2 and needs to be installed using the pip command below

pip install psycopg2

To get PostgreSQL: Postgresql website

MySQL

This uses a library called pymysql and needs to be installed using the pip command below

pip install pymysql

To get MySQL: XAMPP website

SQLite3

This comes in as a built-in package with Python installation and writes the database information to a file