Reputation: 13
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
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