A database for python 3 in Python Programming Language?
1 answer(s)
For getting started, SQLite is the best choice. It's already inside Python 3. You do not need to install anything. You just import sqlite3
. Your whole database is just one file on your computer. So it's very easy to manage for smaller projects.
When your project gets bigger, you can look at something like PostgreSQL. You will need a library to connect to it, though. Also, many people use SQLAlchemy. It helps you use Python objects with your database, not just SQL commands. It is quite powerful.
Cheers.