Hi,
I'm looking for the best way to add some data about the database itself in json file.
In the end i want have in my json file looking something like this :
{
"info": {
'name': "some name",
'version' : "some version"
},
'database': {
'table1': {
0: {document...},
1: {document...},
},
'table2': {
...
}
}
}
I want TinyDb working only with data contained in the database dict. Do you think it's doable ?Is Subclassing TinyDB the best way ?
Thank you for your help