Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tufayellus/python-databases-in-one-place
A collection of different database implementation code template with Python such as postgres, mysql and sqlite3
https://github.com/tufayellus/python-databases-in-one-place
dbms mysql postgres postgresql psycopg2 pymysql python-database python-mysql python-postgresql python-sqlite3 sqlite3
Last synced: about 1 month ago
JSON representation
A collection of different database implementation code template with Python such as postgres, mysql and sqlite3
- Host: GitHub
- URL: https://github.com/tufayellus/python-databases-in-one-place
- Owner: TufayelLUS
- Created: 2024-07-15T05:31:14.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-15T05:52:18.000Z (6 months ago)
- Last Synced: 2024-07-15T06:44:41.276Z (6 months ago)
- Topics: dbms, mysql, postgres, postgresql, psycopg2, pymysql, python-database, python-mysql, python-postgresql, python-sqlite3, sqlite3
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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 belowpip install psycopg2
To get PostgreSQL: Postgresql website# MySQL
This uses a library called pymysql and needs to be installed using the pip command belowpip 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