TinyDB Tambah Tabel

from tinydb import TinyDB
db = TinyDB('database.json')
table = TinyDB.table(db, 'users')
The Rambling Lank