All Questions
Tagged with database python-2.x
4 questions
1
vote
1
answer
123
views
Database design using Closure Table for tagging system
I created these database tables with the inspiration in NjDevPro github repository. The design uses Closure Table for implementation of hierarchical tagging system in ...
3
votes
1
answer
795
views
Script to store, search, and delete IPFS data with description in JSON file
Here is the script that I would like reviewed for the following:
Best practices and design pattern usage
Correctness in unanticipated cases
Better dictionary access
The script is made to store (IPFS) ...
6
votes
1
answer
3k
views
Persistent key value store for Python using SQLite3
This is a module to implement a key value store in Python using SQLite3. Originally written to allow sharing of configuration among multiple threads that are already sharing a SQLite3 database, I have ...
3
votes
1
answer
5k
views
Simple in-memory database
How can I improve this code (elegance, best practices, etc)?
...