Persistent, hobbit-sized dictionaries
Project description
Persistent, hobbit-sized dictionaries
Example Usage
import os
import hdb
# Create a hobbit dictionary at location `pack`.
pack = hdb.get('pack')
# Set a key value pair.
pack['food'] = 'lembas'
# Persist the dictionary to disk.
pack.save()
# Confirm that the dictionary was saved.
# The `location` specifies the path on disk.
print(pack.location)
print(os.path.abspath(pack.location))
print(os.path.exists(pack.location))
We can later retrieve the dictionary like so:
import hdb
new_session = hdb.get('pack')
print(new_session)
# We can then further edit the data, and store it to the same location.
new_session['supplies'] = 'taters'
new_session.save()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
hdb-0.1.1.tar.gz
(2.4 kB
view hashes)
Built Distribution
hdb-0.1.1-py3-none-any.whl
(3.0 kB
view hashes)