A disk backed dictionary implementation.
Project description
IODict
iodict is a thread safe dictionary implementation which uses a pure python
object store. The dictionary implementation follows the Dict
API, but stores
items using their birthtime allowing users to treat this datastore as a
file system backed OrderedDict
.
Items in the object store use file system attributes, when available to store key and birthtime information. File system attributes enhance the capability of the object store; however, they're not required. In the event xattrs are not available, file stat is used for file creation time along with base64 encoding for object keys.
Usage
import iodict
data = iodict.IODict(path='/tmp/iodict') # Could be any path on the file system
data["key"] = "value"
data
{'key': "value"}
dir(data)
['__class__',
'__delattr__',
'__delitem__',
'__dict__',
'__dir__',
'__doc__',
'__enter__',
'__eq__',
'__exit__',
'__format__',
'__ge__',
'__getattribute__',
'__getitem__',
'__gt__',
'__hash__',
'__init__',
'__init_subclass__',
'__iter__',
'__le__',
'__len__',
'__lt__',
'__module__',
'__ne__',
'__new__',
'__reduce__',
'__reduce_ex__',
'__repr__',
'__setattr__',
'__setitem__',
'__sizeof__',
'__str__',
'__subclasshook__',
'__weakref__',
'_db_path',
'_encoder',
'_lock',
'clear',
'copy',
'fromkeys',
'get',
'items',
'keys',
'pop',
'popitem',
'setdefault',
'update',
'values']
When running in a multiprocessing / threading application, a lock is required to be passed into the iodict class.
import threading
import iodict
data = iodict.IODict(path='/tmp/iodict', lock=threading.Lock)
By default, if no lock is provided, a multiprocessing lock will be created.
The lock object allows the iodict
to respect the locking paradigm of the
executing application.
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
Built Distribution
File details
Details for the file iodict-0.0.7a20211216195157.tar.gz
.
File metadata
- Download URL: iodict-0.0.7a20211216195157.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.3 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38062a6bb80a62f11bf43088ae138c1cbbed90f91d113bd15010f27e881355f4 |
|
MD5 | d45b0baf376ca9ce48ac6d9fd5f6a140 |
|
BLAKE2b-256 | 975ee720527d6dbd0d8e6015d9aace48379297d2fbeb894f7ae6118d672e7256 |
File details
Details for the file iodict-0.0.7a20211216195157-py3-none-any.whl
.
File metadata
- Download URL: iodict-0.0.7a20211216195157-py3-none-any.whl
- Upload date:
- Size: 10.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.3 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f50de5de3806ff7269f9f4e1813fb42b205f0a8111ad2dcf360422bab2ee57a5 |
|
MD5 | 5d98e7b72771729a8583ee9d51a9e181 |
|
BLAKE2b-256 | 0b193cfd6d65a1b2e74a96fee67d420500fd040e394c14623e85e3b087e4a0b8 |