store and fetch data by key
import anydbm file = anydbm.open("filename",'c') file['key'] = 'data' data = file['key']