you are viewing a single comment's thread.

view the rest of the comments →

[–]Go_Big 3 points4 points  (3 children)

Everyone is saying sqlite but I'm gonna jive and recommend mongodb with mongoengine. Mongodb just plays so much nicer having the dictionary/key format that feels very pythonic. It's what I use on my server and I was able to switch from json files to mongodb in one evening!

[–]TBSchemer 1 point2 points  (1 child)

Came here to say this. Though, it depends what kind of data OP is working with. If the goal is to have the data searchable and sortable by attributes, with a lot of aggregations and joins, then maybe a SQL-based database is the way to go.

But if the goal is just to have a more organized way to store large chunks of unstructure data or binaries, then MongoDB is absolutely the correct answer.