A python library to compress a dict into a bytearray.
Project description
proJSON
A python library to compress a dict into a bytearray.
Install
pip install proJSON
The Crafter
Types
# Format
"name" : {
"type": type, # Types specified below with arguments
...
}
"intExample" : {
"type": "int", # Set int type
"byte": 1 # Set max int size to 1 byte (int8)
}
"stringExample" : {
"type": "string", # Set string type
"maxlen": 1 # Set max size of string ( the max size of the string is calculated by (2^(8*n)-1). if n is 1 then the max size is 255) (optional defaults to 2)
}
"bytesExample" : {
"type": "bytes", # Set bytes type
"maxlen": 1 # Set max size of string ( the max size of the string is calculated by (2^(8*n)-1). if n is 1 then the max size is 255) (optional defaults to 2)
}
"dirExample" : {
"type": "dir", # Set dir type
"subdirs": {} # A dictionary of int, string and byte types in the format above.
}
"boolExample" : {
"type" : "bool" # Set bool type
}
"listExample" : {
"type" : "list", # Set list type
"subtype": "int", # Set list contents type to an "int"
"maxlen": 1 # The "maxlen" parameter for bytes or str (for "int" maxlen is still used instead of "byte")
}
Don't put a dir in another dir. It won't work
Init
from proJSON import Crafter
schema = {
# See the [types section](###Types) for how to make this.
"intExample" : {
"type": "int",
"byte": 1
},
"stringExample" : {
"type": "string",
"maxlen": 1
},
"bytesExample" : {
"type": "bytes",
"maxlen": 1
},
"dirExample" : {
"type": "dir",
"subdirs": {
"intExample2" : {
"type": "int",
"byte": 1
},
"stringExample2" : {
"type": "string",
"maxlen": 1
},
}
}
}
crafter = Crafter(schema)
Encoding data
exampledata = {
"intExample" : 7,
"stringExample" : "Hello World!",
"bytesExample": b"This is bytes",
"dirExample" : {
"intExample2" : 200,
"stringExample2": "Hello Again!"
}
}
encoded = crafter.encode(exampledata)
print(encoded) # b'\x07\x0cHello World!\x00\rThis is bytes\xc8\x0cHello Again!' (43 bytes)
Decoding data
data = b'\x07\x0cHello World!\x00\rThis is bytes\xc8\x0cHello Again!'
decoded = crafter.decode(data)
print(decoded) # {'intExample': 7, 'stringExample': 'Hello World!', 'bytesExample': b'This is bytes', 'dirExample': {'intExample2': 200, 'stringExample2': 'Hello Again!'}} (154 bytes)
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
proJSON-1.2.6.tar.gz
(4.9 kB
view details)
Built Distribution
File details
Details for the file proJSON-1.2.6.tar.gz
.
File metadata
- Download URL: proJSON-1.2.6.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5222b345b5c5988a71334a7f19b61323aa701e74b0c3cc1c4134ef412fb10aef |
|
MD5 | 3ba57b77bb48859fe5e22e72528f7700 |
|
BLAKE2b-256 | 6db68100d72a3726e127ff275df634faccbce6e96c4670027da1d52a715f2177 |
File details
Details for the file proJSON-1.2.6-py3-none-any.whl
.
File metadata
- Download URL: proJSON-1.2.6-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab84f95c3db15cc23170a60f1a04668fcaccf08e66f5e5b84cbc612217cee922 |
|
MD5 | 23ae7c4f9c82909a9214a04c8f39a68f |
|
BLAKE2b-256 | ef713e7aa8a042494e22276d865d19d6e9384f1da893f9d82bcfeae029c08d2b |