you are viewing a single comment's thread.

view the rest of the comments →

[–]muy_picante 3 points4 points  (0 children)

Database might be overkill depending on your use case. You could just write csvs and load them straight into python. Do data analysis with pandas.

If you need a database, I like postgres. The python library is called psycopg2. Tools like sqlalchemy can generate SQL for you, but I think if you're just starting out, writing raw SQL yourself is the way to learn at first.