I love Python’s sqlite: it is simple, it just needs one additional file to work and no additional dependencies. It is also supported by fancy ORMs, like peewee. But are there any nosql databases which can be used from python without any additional programs installed? I’m fine with additional python package, but I definitely don’t want to, for example, get additional container for Mongo. What are my options?
UPD: I’ve done some research, and looks like my only option is litedb. Code looks great, but there are no docs at all, so I guess it isn’t usable right now
Advertisement
Answer
After all, I found tinydb. Seems great to me.