The TinyDB documentation describes a function "get" which lets you recover a document from a database by its unique id. For example,
db.get(doc_id=3)
Is there a way to get a list of documents from a list of document ids?
The TinyDB documentation describes a function "get" which lets you recover a document from a database by its unique id. For example,
db.get(doc_id=3)
Is there a way to get a list of documents from a list of document ids?