Kxffie

TinyDB Test

Jan 29th, 2022
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. from tinydb import TinyDB, Query
  2. User = Query()
  3. db = TinyDB('./db.json')
  4.  
  5. name = input("What is your name? - ")
  6.  
  7. def insert():
  8. db.insert({'profile': name})
  9.  
  10. insert()
Advertisement
Add Comment
Please, Sign In to add comment