sqlite3db - A simple wrapper class for working with sqlite3 databases
This wrapper class is intended to help simplify your programmatic interactions with sqlite3 databases in Python. It'll allow you to quickly create a database object and begin executing SQL statement(s) against it. There is no need to worry about opening connections to the database, creating database cursors on those connections, or tracking what connections and/or cursors are opened or closed at any given time. All of this boilerplate housekeeping code is handled by the class' methods for you. The aim here is to simply get you working with your database sooner rather than later.
Check out the example database interactions in the class' main function. i.e., at the end of the sqlite3b.py file.
A work in progress.
If you would like to contribute to this project, please submit a pull request.
Marty Kandes, Ph.D. Computational & Data Science Research Specialist HPC User Services Group, San Diego Supercomputer Center University of California, San Diego
Copyright (c) 2019 Martin Charles Kandes
The MIT License (MIT)
0.0.1
Friday, July 19th, 2019