Python: Lazy DB from CSV data?
Without knowing any specific details (at all) of your case, I'll expect that you'll find eventually one of the following ladders as a dominant one for your case:
- Simply just use the built in Python sqlite3.
- However, if the relational model is not a necessity then pytables may be the way to go on.
- Perhaps still, structured arrays can provide the necessary functionality.
- But plenty can be still achieved with just proper usage of plain logic functions.
- After all, get acquainted to live with your
ridiculous custom if-ladders
.
- After all, get acquainted to live with your
- But plenty can be still achieved with just proper usage of plain logic functions.
- Perhaps still, structured arrays can provide the necessary functionality.
- However, if the relational model is not a necessity then pytables may be the way to go on.
Obviously, any of the ladders sketched above will posses its specific pros and cons, depending on the actual case. Thus a really careful mix of them may eventually yield to best 'overall' result.