Python wrapper for the Zenroom virtual machine
Project description
zenroom.py
A python wrapper for Zenroom
This library attempts to provide a very simple wrapper around the Zenroom (https://zenroom.dyne.org/) crypto virtual machine developed as part of the DECODE project (https://decodeproject.eu/), that aims to make the Zenroom virtual machine easier to call from normal Python code.
This library has been developed for a specific deliverable within the project, and as such will likely not be suitable for most people's needs. Here we directly include a binary build of Zenroom compiled only for Linux (amd64), so any other platforms will be unable to use this library. This library has also only been tested under Python 3.
Zenroom itself does have good cross platform functionality, so if you are interested in finding out more about the functionalities offered by Zenroom, then please visit the website linked to above to find out more.
:triangular_flag_on_post: Table of Contents (click to expand)
:floppy_disk: Installation
pip install zenroom
NOTE - the above command attempts to install the zenroom package, pulling in the Zenroom VM as a precompiled binary, so will only work on Linux (amd64) machines.
:video_game: Usage
Two main calls are exposed, one to run zencode
and one for zenroom scripts
.
If you don't know what zencode
is, you can start with this blogpost
https://decodeproject.eu/blog/smart-contracts-english-speaker
A good set of examples of zencode
contracts could be found here
https://github.com/DECODEproject/dddc-pilot-contracts
ZENCODE
Here a quick usage example:
from zenroom import zenroom
contract = """Scenario 'coconut': "To run over the mobile wallet the first time and store the output as keypair.keys"
Given that I am known as 'identifier'
When I create my new keypair
Then print all data
"""
result, errors = zenroom.zencode(contract)
print(result.decode())
NOTE The result is in bytes
and not string if you want a string you want to .decode()
it
The zencode function accepts the following:
script
(str): Required byte string or string containing script which Zenroom will executekeys
(str): Optional byte string or string containing keys which Zenroom will usedata
(str): Optional byte string or string containing data upon which Zenroom will operateconf
(str): Optional byte string or string containing conf data for Zenroomverbosity
(int): Optional int which controls Zenroom's log verbosity ranging from 1 (least verbose) up to 3 (most verbose)
Returns
- tuple: The output from Zenroom expressed as a byte string, the eventual errors generated as a string
ZENROOM SCRIPTS
from zenroom import zenroom
script = "print('Hello world')"
output, errors = zenroom.execute(script)
The same arguments and the same result are applied as the zencode
call.
:clipboard: Testing
Tests are made wuth pytests, just run
python setup.py test
:globe_with_meridians: Links
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 zenroom-1.0.4.tar.gz
.
File metadata
- Download URL: zenroom-1.0.4.tar.gz
- Upload date:
- Size: 29.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 28f3ef49f2bbdbbd273193e3bc787e53fc6b116a3d6befd7137ba5988d7424cb |
|
MD5 | 72bf4a4837fc2d257d1a8adc18ee449d |
|
BLAKE2b-256 | 53dfd9787ea5f5bd7c1b4ba27d4030dc6f95370068c53d09611b05b0c186b4b8 |
File details
Details for the file zenroom-1.0.4-py3-none-any.whl
.
File metadata
- Download URL: zenroom-1.0.4-py3-none-any.whl
- Upload date:
- Size: 36.7 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef29a47e24804058d7afd969c0a3f1076ba030e75181e671e9d1350aac8be469 |
|
MD5 | 987249a6d11eb99c7ce7f866554339c7 |
|
BLAKE2b-256 | 235a6ad4d69a91ab0b0384753dcc8dd9fd7fff73e94ad911b85464241630296d |