erikltt
erikltt

Reputation: 13

Installing postgresql db together with python package

I wrote a python script that requires the use of a postgresql DB. For test purpose, I installed the postgresql DB manually, and the DB that comes with that. The script connects to it and make its job. My question is about packaging : what is the best solution for the user to install this script, along with the DB and its schema juste by typing pip install xxx ? Is that possible ?

Thanks

Upvotes: 1

Views: 283

Answers (1)

avaj_wen12
avaj_wen12

Reputation: 213

Postgres is great but often you can get away with SQLite. It's part of the standard library and comes bundled with Python

Upvotes: 1

Related Questions