Is there something like mongodb/couchdb that does the sqlite philiosophy of an in-process database that's just saved out to a file?

I need to convert a python program to store some data in a database and I'd rather not deal with SQL.

@foone It may be over engineered for your purposes, but maybe automerge could work. Automerge can work like a document database and it has a file storage adapter. It’s meant for sharing data between multiple clients, so it may have a lot of stuff you don’t need. It’s written in rust though the first class support seems to target javascript.

https://automerge.org/

Automerge

Automerge is a library for building collaborative, local-first applications.