August 2018
Intermediate to advanced
366 pages
10h 14m
English
Perform the following steps for this recipe:
>>> with shelve.open('/tmp/shelf.db') as shelf:
... shelf['value'] = 5
...
>>> with shelve.open('/tmp/shelf.db') as shelf:
... print(shelf['value'])
...
5
>>> class MyClass(object): ... def __init__(self, value): ... self.value = value ... >>> with shelve.open('/tmp/shelf.db') as shelf: ... shelf['value'] = MyClass(5) ... >>> with shelve.open('/tmp/shelf.db') as shelf: ... print(shelf['value']) ... ...