A lightweight, thread-safe Python dictionary wrapper for JSON files.
Project description
arkivist
Arkivist is Python Dictionary wrapper for JSON files.
Other behaviors are similar to native Python dictionaries, the tutorial below only covers add-on feature specific to Arkivist.
Official Release
Arkivist can now be used on your Python projects through PyPi by running pip command on a Python-ready environment.
pip install arkivist --upgrade
Current version is 1.4.*, but more updates are coming soon. Installing it will also install required packages including requests.
This is compatible with Python 3.9+ and is already used in various personal projects.
Highlights of 1.4
- Thread-safe: a single Arkivist instance can be shared safely across threads.
- Atomic saves: files are written to a temporary file and moved into place, so an interrupted write can no longer corrupt your JSON file.
- Consistent autosave: native dictionary operations (
update,pop,del,clear,setdefault) now autosave just likeset(). - Safer failures: failed fetches, invalid
load()input, and wrong encryption keys raise clearArkivistExceptions instead of silently wiping data. - See CHANGELOG.md for the complete list of fixes and additions.
Use-cases
1. Need a lightweight data storage with zero application installations. 2. The project is for personal or hobby with low number of users who simultaneously access the data storage. 3. The project requires a data storage that has a fast learning curve due to resource or time constraints.
Usage
1. Import Package
from arkivist import Arkivist
2. Cast Python Dictionary to Arkivist object Create a new file if not yet existing.
message = Arkivist({"hello": "world"})
data = {"a": "Ant", "b": "Bug", "c": "Cat"}
animals = Arkivist(data, filepath="animals.json", mode="w+")
3. Instantiate data from existing JSON file
By default, autosave is set to True. To optimize, set autosave to False and perform manual saving after completely performing operations.
storage = Arkivist("storage.json")
4. Set JSON File indentation
# indent = 1, 2, 3, or 4
storage = Arkivist("storage.json", indent=2)
5. Customize sorting options
storage = Arkivist("storage.json", autosort=True, reverse=False)
6. Disable Autosave
storage = Arkivist("storage.json", autosave=False)
storage.save()
storage.save(save_as="storage-copy.json")
7. Add new entry
places= Arkivist("data/places.json")
places.set(1, "Sun")
places.set(2, "Earth")
places.set(3, "Moon")
# native update format
people = Arkivist("data/people.json")
people.update({"juan": {"name": "Juan Dela Cruz"}})
people.update({"maria": {"name": "Maria Dela Cruz"}})
8. Get dictionary object Set to read mode only, show an error if file does not exists.
places = Arkivist("data/places.json", mode="r")
print(places.show())
9. Generate JSON-compliant string
places = Arkivist("data/places.json")
print(places.string())
10. Clear dictionary data
places = Arkivist("data/places.json", autosave=False)
places.reset()
11. Replace all contents
# replace from a valid dictionary
people = Arkivist("data/people.json")
friends = {"friend": {"name": "Friend"}, "enemy": {"name": "Enemy"}}
people.load(friends)
# load from valid JSON string
anons = "{\"robot\": {\"name\": \"Robot\"}, \"ghost\": {\"name\": \"Ghost\"}}"
people.load(anons)
12. Check if empty or not
## do not save to file
people = Arkivist("data/people.json").reset()
print("Count:", people.count(), "; Is empty: ", people.is_empty())
13. Flatten the nested dictionary
people = Arkivist("data/people.json")
people.set("juan", {"name": "Juan Dela Cruz"})
people.set("maria", {"name": "Maria Dela Cruz"})
print(people.flatten())
14. Fetch from a web API
todos = Arkivist() # autosave = False, data is only in memory
todos.fetch("https://jsonplaceholder.typicode.com/todos/1")
print(todos.show())
15. Get random key-value pair
names = Arkivist("names.json").reset()
names.set("abc", {"name": "Abc"})
names.set("dog", {"name": "Doggy"})
names.set("juan", {"names": "Juan"})
print("Random item:", names.random())
16. Double check if expected key value is correct
numbers = Arkivist("numbers.json").reset()
numbers.set("one", 1)
print("Matches (1):", numbers.matches("one", 1))
print("Matches (2):", numbers.matches("one", 2))
doublecheck()still works but is deprecated in favor ofmatches().
16. Perform shallow queries
names = Arkivist("names.json")
names.set("abc", {"name": "Abc"})
names.set("dog", {"name": "Doggy"})
names.set("juan", {"name": "Juan"})
# exact match
for name, data in names.where("name", "Abc").query():
print(name, data)
# search containing the substring
for name, data in names.where("name", "a", exact=False).query():
print(name, data)
# search containing the substring, case sensitivity = False
for name, data in names.where("name", "a", exact=False, sensitivity=False).query():
print(name, data)
# search excluding the exact keyword
for name, data in names.where("name").exclude("Abc").query():
print(name, data)
# search excluding the items containing the keyword
for name, data in names.where("name").exclude("a", exact=False).query():
print(name, data)
# search excluding the items containing the keyword, case sensitivity = False
for name, data in names.where("name").exclude("A", exact=False, sensitivity=False).query():
print(name, data)
17. Find child of parent
names = Arkivist("names.json").reset()
names.set("names", {})
names.find("names").set("maria", 1)
print("Maria:", names.find("names").get("maria", 0))
print("Pedro:", names.find("names").get("pedro", 0))
18. Append/Extend/Remove items in list
test = Arkivist("tests.json").reset()
test.append_in("colors", "red")
test.append_in("colors", "orange")
test.append_in("colors", "yellow")
test.append_in("colors", ("blue", "green"), unique=True, sort=True)
test.remove_in("colors", "yellow")
test.remove_in("colors", ("blue", "purple"))
test.set("numbers", {})
test.find("numbers").append_in("odd", 1)
test.find("numbers").append_in("odd", (1, 3, 5, [7]))
19. Encrypt JSON file
NOTE: Copy and securely store the auto-generated authetication file to maintain access to the JSON file. Otherwise, the actual data from the JSON file can no longer be accessed. Without the secure key, reading, writing, and decryption will not be allowed. If the authfile is invalid or not set, check for the filename of the auto-generated file and rename as needed and update the filename to your program source code to access the JSON file again.
# Set the filename of the authentication file
weather = Arkivist("temp/encrypted.json", authfile="secret-key.txt")
# To encrypt data, use the encrypt function
weather.encrypt()
# Perform normal operations as needed
weather.set("weather", {})
weather.find("weather").set("2022-04-14", "Cloudy")
weather.find("weather").set("2022-04-15", "Sunny")
# to unencrypt, set to false
weather.encrypt(False)
20. Batch operations Suspend autosave for bulk updates and write to disk only once at the end of the block.
storage = Arkivist("storage.json")
with storage.batch():
for i in range(10000):
storage.set(str(i), i * i)
21. Use as a context manager Contents are saved automatically when the block exits, even with autosave disabled.
with Arkivist("storage.json", autosave=False) as storage:
storage.set("status", "done")
22. Inspect configuration
storage = Arkivist("storage.json")
print(storage.filepath) # backing JSON file
print(storage.encrypted) # True if saved encrypted
print(storage.autosave) # can also be assigned: storage.autosave = False
23. Fetch with a timeout
fetch() accepts timeout (seconds, default 10) and optional headers; existing data is only replaced after a successful response.
todos = Arkivist()
todos.fetch("https://jsonplaceholder.typicode.com/todos/1", timeout=5)
Thread safety and atomic saves
A single Arkivist instance can be shared across threads; every operation is guarded by a re-entrant lock. Saves are atomic — contents are written to a temporary file and moved into place — so an interrupted write cannot corrupt the JSON file. Note that instances are thread-safe, not multi-process-safe.
Deprecations
The following still work but emit a DeprecationWarning:
count()— use the built-inlen(storage)instead.doublecheck(key, value)— usematches(key, value)instead.
Futures
Arkivist is an ongoing project and new features will be added in the future. In the future, it aims to add complex querying and also add a security layer to protect data from unauthorized access.
Conclusion
Arkivist allows you to build your Python apps with a lightweight data storage, this can come handy especially when you are doing personal and hobby projects that handles simple data.
Fun fact
Arkivist is a play on the word Archive, which means a collection of historical documents or records. Arkivist is like your digital librarian that manages your important data for a lightweight and organized data storage.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file arkivist-1.4.0.tar.gz.
File metadata
- Download URL: arkivist-1.4.0.tar.gz
- Upload date:
- Size: 19.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c9448bfc97b23fab54f93424c863597bfa62036ac062be487ce899dd62c6d4a
|
|
| MD5 |
4cc9c49d549bd024a602e8929ee9f8f5
|
|
| BLAKE2b-256 |
7c42ae2e84bf7cbe1621b3bac1a820f7ce5c4f1f8241e0d51e737edabb20ad86
|
File details
Details for the file arkivist-1.4.0-py3-none-any.whl.
File metadata
- Download URL: arkivist-1.4.0-py3-none-any.whl
- Upload date:
- Size: 12.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f50c8fb4f8bbe524a905de32eacf06002d10e051dcce2b4feea7927942a8e4d7
|
|
| MD5 |
0f66ec1d6ce0e57f1daac9ec84dbef16
|
|
| BLAKE2b-256 |
8e56b985b6141be4acf31910fe1fe69c23ec5334be739364a9dc397b010a2b57
|