3 Antworten
+ 7
Sql alchemy is a good library for connecting database to python script
+ 3
hallo, i use sqlite3 is easy....
an example.
import sqlite3
conn = sqlite3.connect('clientes.db')
conn.close()
+ 2
You can install ms sql server on linux yes, but why would you want to do that? 😰
Not clear what you mean by 'easy'. Easy to install? Easy to use? There is not much difference in the functionality except on the scripting side.
MySQL or PostgreSQL are perfectly valid options and completely free + open source.
https://db-engines.com/en/system/Microsoft+SQL+Server%3BMySQL%3BPostgreSQL
If you only need a lightweight solution then you can also consider sqlite3 which is built in standard python. For other databases you need to find and install an external library to be able to connect.
https://code.sololearn.com/csZ5bjiWfdCR/?ref=app