piskvorky / sqlitedict

Persistent dict, backed by sqlite3 and pickle, multithread-safe.
Apache License 2.0
1.16k stars 130 forks source link

the big one #133

Closed NitinNR closed 3 years ago

NitinNR commented 3 years ago

pair = {"name":"","age":""}

mydict["key"] = pair

mydict["key"]["name"] = "changed'

not able to assign.please tell me how this works!

piskvorky commented 3 years ago

Please see the Beware section in the README: https://github.com/RaRe-Technologies/sqlitedict#documentation

NitinNR commented 3 years ago

Please see the Beware section in the README: https://github.com/RaRe-Technologies/sqlitedict#documentation

pair = {"name":"","age":""}

mydict["key"] = pair

mydict["key"]["name"] = "changed'

not able to assign.please tell me how this works!

please tell me how i can achieve this?