A python implementation of the Tycho binary format
Project description
Tycho Python
A python implementation of the tycho binary format.
Features
- Full Implementation
- Serialise/Deserialise python objects into binary format.
- Uses Builtin errors/types.
- No dependencies
Installation
You can install using pip:
pip install tycho-py
or add the following to your requirements file:
tycho-py==0.1.5
Once installed, import the library:
import tycho
Documentation
Basic usage
The following example takes a python object and encodes it into tycho bytes.
import tycho
data = {"foo": "Hello World", "bar": 10, "baz": True}
tycho.to_bytes(data).hex(" ")
# 40 03 03 66 6f 6f 1e 0b 48 65 6c 6c 6f 20 57 6f 72 6c 64 03 62 61 72 11 0a 03 62 61 7a 10 01
The following example takes a tycho bytes and decodes it into bytes.
import tycho
data = bytes.fromhex("40 03 03 66 6f 6f 1e 0b 48 65 6c 6c 6f 20 57 6f 72 6c 64 03 62 61 72 11 0a 03 62 61 7a 10 01")
print(tycho.from_bytes(data))
# {'foo': 'Hello World', 'bar': 10, 'baz': True}
Advanced usage
As python does not map to the rust/serde data model, types have to be inferred. When encoding from a python object into bytes two processes take place, Serialisation and Encoding. See this diagram below.
Python Object
\/ /\ Serialise
Tycho Classes
\/ /\ Encoding
Bytes
Serialisation is expensive, as types have to matched and inferred.
To allow better quicker encoding, the Tycho Classes are exposed to the user.
These reproduce the same result as above examples.
import tycho
data = tycho.Structure({
"foo": tycho.String("Hello World"),
"bar": tycho.Unsigned8(10),
"baz": tycho.Boolean(False)
})
print(tycho.encode(data))
# 40 03 03 66 6f 6f 1e 0b 48 65 6c 6c 6f 20 57 6f 72 6c 64 03 62 61 72 11 0a 03 62 61 7a 10 01
import tycho
data = bytes.fromhex("40 03 03 66 6f 6f 1e 0b 48 65 6c 6c 6f 20 57 6f 72 6c 64 03 62 61 72 11 0a 03 62 61 7a 10 01")
print(tycho.decode(data))
# Structure({'foo': String('Hello World'), 'bar': Unsigned8(10), 'baz': Boolean(True)})
Using the Tycho Classes also allow for usage of the Variant Object. As python does not have rust-like enums,
there is no serialisation/deserialisation implemented for them.
Within the library these Tycho Classes are named Elements to keep parity between the rust library and others.
Methods
-
tycho.encode(element) -> bytes- Encode an Element object into bytes
-
tycho.decode(bytes) -> Element- Decode bytes into an Element
-
tycho.serialise(object) -> Element- Serialise a python object into an element
-
tycho.deserialise(element) -> object- Deserialise a element into a python object
-
tycho.from_bytes(object) -> Element- Serialise and encode a python object into bytes.
-
tycho.deserialise(element) -> object- Decode and Deserialise bytes into a python object.
Classes
Base classes
tycho.Elementtycho.Valuetycho.NumericalValue
Type classes
tycho.Unittycho.Optiontycho.Structuretycho.Arraytycho.Varianttycho.Listtycho.Maptycho.Booleantycho.Unsigned8tycho.Unsigned16tycho.Unsigned32tycho.Unsigned64tycho.Unsigned128tycho.Signed8tycho.Signed16tycho.Signed32tycho.Signed64tycho.Signed128tycho.Float32tycho.Float64tycho.Chartycho.Stringtycho.Bytes
Warning
Within the spec it is possible for a
Mapto containfloat32andfloat64, However some libraries map not accept such values (due to their unhashability)
Project details
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 tycho-py-0.1.5.tar.gz.
File metadata
- Download URL: tycho-py-0.1.5.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.7.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1d4125b20a38a5ef0f7e157819018a79554bea0da10f8916c49928aeda12b38
|
|
| MD5 |
119b35c052c2b4c5af40725d33265dde
|
|
| BLAKE2b-256 |
68e59f24ec062873849e51fe2a986740dbf4bc208375fc3fcda861ddb30a0c10
|
File details
Details for the file tycho_py-0.1.5-py3-none-any.whl.
File metadata
- Download URL: tycho_py-0.1.5-py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.7.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c34bb819bad7c7145839e229719d54ed64ae3782560737d8a543ad587840d7f1
|
|
| MD5 |
f3426fbf0572bc64d2f02016c4d86f7e
|
|
| BLAKE2b-256 |
ecbcf1df89c6682b752c26c916b74ff628c14c207c1e4a842894892e61c20eb1
|