python from pickledb import PickleDB db = PickleDB('mydata.db') db.set('key1', 'value1') value = db.get('key1') db.rem('key1') db.dump()