Tinydb Ajouter une table
from tinydb import TinyDB
db = TinyDB('database.json')
table = TinyDB.table(db, 'users')
The Rambling Lank
from tinydb import TinyDB
db = TinyDB('database.json')
table = TinyDB.table(db, 'users')
database.remove(where('key') == 1)