A lightweight, flexible JSON server and client
Project description
Apocrypha is a lightweight, flexible JSON server and client written in Python 3. It includes a client library for easy interaction through Python, and it’s simple query format allows APIs to easily written in other languages.
You can install Apocrypha with pip: pip3 install apocrypha
Then you’re ready to start the server: python3 -m apocrypha.server
If you’re comfortable with Haskell, there is a Haskell Implementation.
Features
multithreaded Thread safe server and client. All queries are atomic.
caching Writes clear the cache, any query will be served out of the cache if possible.
nosql No schemas, no overhead, just your data in the format you provided.
json Serve any existing JSON file to the network or start from scratch. Supports unlimited nested dictionaries.
fast Serve up to 20,000 queries per second on cache hit heavy workloads. Database is kept in memory, no disk reads are made after startup.
persistance Writes are queued and saved to disk once per second.
lightweight Less than 2,000 lines of Python and no external dependencies outside of the standard library.
Example Python API usage, check pydoc3 apocrypha.client for full usage and more examples.
from apocrypha.client import Client
db = Client()
# apocrypha supports lists, strings, and dictionaries
for i in range(0, 100):
db.append('numbers', value=i)
print(db.get('numbers')[:10])
# nested dictionaries are allowed!
customers = {
'alice': {
'age': 30
},
'bob' : {
'age': 20
}
}
db.set('customers', value=customers)
print(db.keys('customers'))
# query for sub keys with a simple syntax
print(db.get('customers', 'alice', 'age'))
for customer in db.keys('customers'):
print(db.get('customers', customer, 'age'))
A simple C client is available here if you want faster start up times than Python for client applications, like shell scripts.
The network protocol is simple: send the length of the message in bytes, then the message. Query elements are delimited by newlines. Each message ends in a newline, and newlines are included in the length calculation of the message.
index
index further into the database through a key, then recursively display all keys and values under the key. this is the usual way to traverse the database and gather information
(dict a, str b, b in a) => a b -> IO $ d apples granny = good $ d apples {'granny': 'good'} $ d apples granny good
append
append a list or string to an existing string or list. create the left side if it doesn’t already exist
(none a | str a | list a, str b | list b) => a + b -> none | error $ d toppings = mushrooms $ d toppings + pineapple $ d toppings mushrooms pineapple
remove
remove one or more elements from a list. if the resulting list now only contains one element, it’s converted to a singleton
(list a, str b | list b, b in a) => a - b -> none | error $ d sweets = cake pie pizza $ d sweets - pizza $ d sweets cake pie
assign
assign the value of an element. if multiple arguments are given on the right side of the assignment, the result is list assignment
(any a, str b | list b) => a = b -> none $ d apple = sauce pie $ d apple sauce pie
search
recursively search the current level for a value. displays all the keys that correspond have the value’s value
(str a) => IO $ d rasp = berry $ d blue = berry $ d @ berry rasp blue
keys
show the keys immediately under this value. doesn’t recursively print all keys and values underneathe
dict a => a --keys -> IO | error $ d stone sand = weak $ d stone lime = tough $ d stone --keys sand lime
set
replace the value of an index with raw JSON
(any a, str b, JSON b) => a --set b -> none | error $ d pasta --set '["spaghetti", "lasgna"]' $ d pasta spaghetti lasagna
edit
dump the raw JSON value of a key.
any a => a --edit -> IO $ d pasta = spaghetti sauce $ d pasta --edit '["spaghetti", "sauce"]'
delete
delete any element from it’s parent dictionary
any a => a --del -> none $ d apple sauce = good $ d apple pie = great $ d apple sauce --del $ d apple {'pie': 'great'}
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 Distributions
Built Distribution
File details
Details for the file apocrypha-2.2.0-py2.py3-none-any.whl
.
File metadata
- Download URL: apocrypha-2.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 20.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 492845828e90da81d9bd9f110fbc5219e61fce95d8c6c77322141e56939f5c64 |
|
MD5 | c75879ef4a1445f29877951e8bf588ed |
|
BLAKE2b-256 | 66d89d945e304e7d934a7fb0a3797c729c8622ce9dbecc3be6e2ad973eedf7c3 |