Skip to main content

Zenroom for Python: Bindings of Zenroom library for Python.

Project description

Use Zenroom in Python3


Zenroom

zenroom.py 🐍
A Python3 wrapper of Zenroom, a secure and small virtual machine for crypto language processing



Build status Code coverage PyPI


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.

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.


💾 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) and macOS machines.


🎮 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 The official documentation is available on https://dev.zenroom.org/zencode/

A good set of examples of zencode contracts could be found on

🐍 Python wrapper

the wrapper exposes two simple calls:

  • zenroom_exec
  • zencode_exec

as the names suggest are the two methods to execute zenroom (lua scripts) and zencode.

args

Both functions accept the same arguments:

  • script string the lua script or the zencode script to be executed
  • keys string the optional keys string to pass in execution as documented in zenroom docs here
  • data string the optional data string to pass in execution as documented in zenroom docs here
  • conf string the optional conf string to pass according to zen_config here

return

Both functions return the same object result ZenResult that have two attributes:

  • stdout string holds the stdout of the script execution
  • stderr string holds the stderr of the script execution
Examples

Example usage of zencode_exec(script, keys=None, data=None, conf=None)

from zenroom import zenroom

contract = """Scenario ecdh: Create a keypair"
Given that I am known as 'identifier'
When I create the keypair
Then print my data
"""

result = zenroom.zencode_exec(contract)
print(result.stdout)

Example usage of zenroom_exec(script, keys=None, data=None, conf=None)

from zenroom import zenroom

script = "print('Hello world')"
result = zenroom.zenroom_exec(script)

print(result.stdout)

The same arguments and the same result are applied as the zencode_exec call.


📋 Testing

Tests are made with pytests, just run

python setup.py test

in (zenroom_test.py)[https://github.com/DECODEproject/Zenroom/blob/master/bindings/python3/zenroom/zenroom_test.py] file you'll find more usage examples of the wrapper


🌐 Links

https://decodeproject.eu/

https://zenroom.org/

https://dev.zenroom.org/

😍 Acknowledgements

Copyright (C) 2018 by Dyne.org foundation, Amsterdam

Originally designed and written by Sam Mulube.

Designed, written and maintained by Puria Nafisi Azizi.

Software contained include sources taken from pytest.

Project funded by the European Commission

This project is receiving funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement nr. 732546 (DECODE).


👥 Contributing

  1. FORK IT
  2. Create your feature branch git checkout -b feature/branch
  3. Commit your changes git commit -am 'Add some fooBar'
  4. Push to the branch git push origin feature/branch
  5. Create a new Pull Request
  6. Thank you

💼 License

  Zenroom.py - a python wrapper of zenroom
  Copyright (c) 2018 Dyne.org foundation, Amsterdam

  This program is free software: you can redistribute it and/or modify
  it under the terms of the GNU Affero General Public License as
  published by the Free Software Foundation, either version 3 of the
  License, or (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU Affero General Public License for more details.

  You should have received a copy of the GNU Affero General Public License
  along with this program.  If not, see <http://www.gnu.org/licenses/>.

Project details


Release history Release notifications | RSS feed

This version

2.0.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

zenroom-2.0.0-cp39-cp39-manylinux_2_24_x86_64.whl (786.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.24+ x86-64

zenroom-2.0.0-cp39-cp39-manylinux_2_24_i686.whl (753.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.24+ i686

zenroom-2.0.0-cp39-cp39-manylinux_2_24_aarch64.whl (758.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.24+ ARM64

zenroom-2.0.0-cp39-cp39-manylinux2014_x86_64.whl (786.6 kB view details)

Uploaded CPython 3.9

zenroom-2.0.0-cp39-cp39-manylinux2014_i686.whl (753.9 kB view details)

Uploaded CPython 3.9

zenroom-2.0.0-cp39-cp39-manylinux2014_aarch64.whl (758.7 kB view details)

Uploaded CPython 3.9

zenroom-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl (347.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

zenroom-2.0.0-cp38-cp38-manylinux_2_24_x86_64.whl (783.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.24+ x86-64

zenroom-2.0.0-cp38-cp38-manylinux_2_24_i686.whl (749.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.24+ i686

zenroom-2.0.0-cp38-cp38-manylinux_2_24_aarch64.whl (754.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.24+ ARM64

zenroom-2.0.0-cp38-cp38-manylinux2014_x86_64.whl (783.1 kB view details)

Uploaded CPython 3.8

zenroom-2.0.0-cp38-cp38-manylinux2014_i686.whl (749.6 kB view details)

Uploaded CPython 3.8

zenroom-2.0.0-cp38-cp38-manylinux2014_aarch64.whl (754.2 kB view details)

Uploaded CPython 3.8

zenroom-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl (347.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

zenroom-2.0.0-cp37-cp37m-manylinux_2_24_x86_64.whl (783.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.24+ x86-64

zenroom-2.0.0-cp37-cp37m-manylinux_2_24_i686.whl (749.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.24+ i686

zenroom-2.0.0-cp37-cp37m-manylinux_2_24_aarch64.whl (754.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.24+ ARM64

zenroom-2.0.0-cp37-cp37m-manylinux2014_x86_64.whl (783.1 kB view details)

Uploaded CPython 3.7m

zenroom-2.0.0-cp37-cp37m-manylinux2014_i686.whl (749.6 kB view details)

Uploaded CPython 3.7m

zenroom-2.0.0-cp37-cp37m-manylinux2014_aarch64.whl (754.2 kB view details)

Uploaded CPython 3.7m

zenroom-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl (347.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

zenroom-2.0.0-cp36-cp36m-manylinux_2_24_x86_64.whl (783.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.24+ x86-64

zenroom-2.0.0-cp36-cp36m-manylinux_2_24_i686.whl (749.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.24+ i686

zenroom-2.0.0-cp36-cp36m-manylinux_2_24_aarch64.whl (754.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.24+ ARM64

zenroom-2.0.0-cp36-cp36m-manylinux2014_x86_64.whl (783.1 kB view details)

Uploaded CPython 3.6m

zenroom-2.0.0-cp36-cp36m-manylinux2014_i686.whl (749.6 kB view details)

Uploaded CPython 3.6m

zenroom-2.0.0-cp36-cp36m-manylinux2014_aarch64.whl (754.2 kB view details)

Uploaded CPython 3.6m

zenroom-2.0.0-cp36-cp36m-macosx_10_9_x86_64.whl (347.4 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file zenroom-2.0.0-cp39-cp39-manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp39-cp39-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 786.6 kB
  • Tags: CPython 3.9, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp39-cp39-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 07f67db1f82ec2ecc757c6c9736554806b1aca20948f483a77f87e9ed327ffd7
MD5 da4cb4607849739f7ab8fd2ac9e7cee5
BLAKE2b-256 8649cc771ee99113767e40b16d5e6500bf111caa8d55a37217a94dfc90b694e8

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp39-cp39-manylinux_2_24_i686.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp39-cp39-manylinux_2_24_i686.whl
  • Upload date:
  • Size: 753.9 kB
  • Tags: CPython 3.9, manylinux: glibc 2.24+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp39-cp39-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 f2d032ff597954aafd459b19abbe0818e800607010febb9ec15aaceddfdab605
MD5 ccd1028a93b381fb6f8e150ef33e4f90
BLAKE2b-256 84f7e784f9a38a272f2cab249dd2f3cf64660824a19d1a40887cdf9932498c1c

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp39-cp39-manylinux_2_24_aarch64.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp39-cp39-manylinux_2_24_aarch64.whl
  • Upload date:
  • Size: 758.7 kB
  • Tags: CPython 3.9, manylinux: glibc 2.24+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp39-cp39-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 45539af0cab46c5cff4eb87db5f6afe11cfe5f0aeafd415e8b382c877705429d
MD5 f9374f549a4eb206f5158c78d6448881
BLAKE2b-256 df48e23e94911f2c10f14547d19ce7be22528f8fdf3a545714eeae745efab9de

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 786.6 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c289ed0c9c733ee3b37f88ac1ca601a54f1aa6281791a321c9d62bb5c102fa1b
MD5 4cb84535b28fd8e2b61c971ca5abd54c
BLAKE2b-256 9838251211cb80f269e93e5c9a9a7865265d8fbd46c652bf5d90701cbe364b4b

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp39-cp39-manylinux2014_i686.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 753.9 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 53e20e81a5b4642c16dfc3f8e4a0462f5adc35cf7f3411572476e6323a83f529
MD5 9fce8c7577a402a6c0a6f1f8f2005877
BLAKE2b-256 6aa8eddfa1ed800a192ec7df37f1ad9d6553f07ad9846dd8ab1c1490c8545eea

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 758.7 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 862485b669e5723774f948d95a2b340c961ec629db91afbb43ad9880ca60cc97
MD5 c05f30effc92e202128aa3aaccfd43ab
BLAKE2b-256 37aba9f4c8fe0f43b93de7125b990eba966dce1ce95c69157c55da07fd7bfdb5

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 347.8 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 952533cdd56bab81566aab590cc90bf32cdd0be9986882da99af71ecb882b29d
MD5 4a70ad1bff3abb195700ef99dc5571c4
BLAKE2b-256 3df352deaaedd0ed8d5d3c80524d16ac88997faacd881825d3fa2a0c8ea53996

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp38-cp38-manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp38-cp38-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 783.1 kB
  • Tags: CPython 3.8, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp38-cp38-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 33716a047a91941123c5dbdeea6ffacce44f0c64085d198eda113f9db10453c4
MD5 24503dc65c0a0ee5b5af631cf0846411
BLAKE2b-256 7f62d6f365df5d63b3145ccd86b5094a4ce565a67b1452f143d08fc7d0befe94

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp38-cp38-manylinux_2_24_i686.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp38-cp38-manylinux_2_24_i686.whl
  • Upload date:
  • Size: 749.6 kB
  • Tags: CPython 3.8, manylinux: glibc 2.24+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp38-cp38-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 c897fdef3c1ec632891e726b0b768cf1691eeb38d3883cd5340ce0d29490fe3a
MD5 c24091d26ddfb57eb095670f73d827a1
BLAKE2b-256 b915a947a7bfe00c55426792b4de054b0a95be97078cf2511ccc554c994d01da

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp38-cp38-manylinux_2_24_aarch64.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp38-cp38-manylinux_2_24_aarch64.whl
  • Upload date:
  • Size: 754.2 kB
  • Tags: CPython 3.8, manylinux: glibc 2.24+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp38-cp38-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 3c5ea0bcd960cfee3a39cc4305f139eb1d0db0cbad97439cab93f25b8f91e2d1
MD5 4a20b0736dd3ba81062482d7ddd68130
BLAKE2b-256 5598cad5d5f110e09f77ddb07e3031a11431ea44700f93303f899eb7333c4141

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 783.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bba4587aab5e2e87ae898346b425d64fec55528894d8cb769c2c33c0c7c5b4ac
MD5 877b8558b6cd330149b3ed7ff8bbb865
BLAKE2b-256 7b6938587b9f83abfcd3b443b5138a8857818fe1a7dbe7b1097067776431a577

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp38-cp38-manylinux2014_i686.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 749.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 663c7d899eb32f8093da82f587715029969bd2e5b79e4fffd4bb4ed975b2b74a
MD5 818d1ef468ffa8331737e3b31bc306a5
BLAKE2b-256 1fe519a6954ee33cf53832dbbcd2733e5cd75ec882435a7e725bc0e6ef65105d

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 754.2 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0adf1840af3ebc2640257601fb186b620208b7da345dff4924ccf610dede85a
MD5 e5a8ae611ad9f1dbcf51b5749e9ac534
BLAKE2b-256 db41989dbaf986e527b26f1199201283212d51bcdfdf4d796c5c8c921bc65d17

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 347.4 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 33bc712bd490fa472e1d022af3ff9e0fd4f2e73e6121917123666ff2ebcd7dc3
MD5 170e04f80d0e5f0618dc773eff916c86
BLAKE2b-256 2206ee11fe510c3581bc1604aa3410d65983ba9d6f5c87432f69a59a84d7d125

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp37-cp37m-manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp37-cp37m-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 783.1 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp37-cp37m-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 54b3f565571e73260e1d728e99c1da5749a6b76cceda2e2bc2fa1526c2f18dec
MD5 42a69ea565849983647b96b00c73b2fd
BLAKE2b-256 270f37ab4be2ff07c361dd71238b34eb51d908bf2f010d9061616510811417e2

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp37-cp37m-manylinux_2_24_i686.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp37-cp37m-manylinux_2_24_i686.whl
  • Upload date:
  • Size: 749.6 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.24+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp37-cp37m-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 ca37550e94dd6ac48d42a363f68e77fec234cfc1c468439c28e14d030773b328
MD5 9d6017209461c58d5fe57abeb88d9ecf
BLAKE2b-256 4c26a4d0b5ee4b9d5ecd28765a4d2f21f2b58f485d25a4bc0b82f6dbffede140

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp37-cp37m-manylinux_2_24_aarch64.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp37-cp37m-manylinux_2_24_aarch64.whl
  • Upload date:
  • Size: 754.2 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.24+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp37-cp37m-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 1490b1bd115725d4a39a7d62088671a4210f2654abec43f97754bcc8976013de
MD5 9b7d4e760fea5636f651ae523fd0d382
BLAKE2b-256 8c2606e49670ae96a058841fa135344d04d1b6992b2a3122323d08aba3976698

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 783.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 821652918feae07b1e4470291b1caf063ee85f1f4868fed342575ba883bc15a5
MD5 d964dff51b9b8398d08bc827f19b0f38
BLAKE2b-256 65d423117dc7eef99d3286177690f2a88ec941fd82858b6c920ce8ff53471ee9

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp37-cp37m-manylinux2014_i686.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 749.6 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6b6b38ca94b1f983ff5a701ed5f10b921067814849b5f6abe11f9ff0fd3f0ea2
MD5 7aa139abf5524163e2f5caacfc6eba45
BLAKE2b-256 d26421419a96de69a7c513358610d1bb7ca12c0aff66e79414a48f7fc11fb358

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 754.2 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17a98d07a146196997be335e72942d52ad410720876707654fb6cb772fa88496
MD5 d2a816d7b7f9c88f539ec9041fffff5d
BLAKE2b-256 ce97a2b90637d52703c8c953b36ce36c1761c898bbbc35de1865824c97822e6c

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 347.4 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1d3f7ce2742b0734fc96d96c3100f7fcb4bfc7053b45e1cd60b6f5baaaa48bb0
MD5 944d4f604cf0b004a75d327e1c208cf1
BLAKE2b-256 159febe37f174b07f252615f26ef5b16520109cf6c502845de7f128cd9e45403

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp36-cp36m-manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp36-cp36m-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 783.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp36-cp36m-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 606448d34088ea255d0842af305a890d427319e72ca4bbb0948ba4273797be16
MD5 4c2cf3003fa1711d675cb5921533245a
BLAKE2b-256 326d1f7f453cd7e3d94211596093ea3ea8cccd7a8bc119bc3d2d6a7d5a137b37

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp36-cp36m-manylinux_2_24_i686.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp36-cp36m-manylinux_2_24_i686.whl
  • Upload date:
  • Size: 749.6 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.24+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp36-cp36m-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 770278e51f9dbd5f5b6eabbdaedcac15c68d6606ac53306687e94272a7669add
MD5 ed97606be202f30ec55bb02d56cdedf3
BLAKE2b-256 f14cedfc32ee08ef52771a828c312e68ee5151fe5bfe2dc3c674eba7925f5012

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp36-cp36m-manylinux_2_24_aarch64.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp36-cp36m-manylinux_2_24_aarch64.whl
  • Upload date:
  • Size: 754.2 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.24+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp36-cp36m-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 cd62fe73026fec991dbb941469a3be28a76d096016e06c545b2b5dfd566d5095
MD5 7d694f46e3735a016681bb5704152917
BLAKE2b-256 0e599ad2007cd009d8a51e425301fe0c8744b547238898e1e9f25fa59d612eee

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 783.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8751b27e8174875472fcd029d71addd68510dd9554551321d3f87b979c037b2
MD5 a929b79eff865e811e764f105011ada4
BLAKE2b-256 86ca3e759af1c18f76d3a939beefd49c1d3a5fc27d458a7c7dd2a6336be93ed2

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp36-cp36m-manylinux2014_i686.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 749.6 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 756ba7666f5b881f139b468e5f79ebe32531332fdee95aba5f18e73c4be4791c
MD5 544c5f7bec95782218ff0989b946c9ed
BLAKE2b-256 a1ee06bf19312862d20d302c3debcbb456ed2c9b6d34cfeacf85d09a7d980955

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 754.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b475290de0c07377bb0d667c6f7969d5df9551d2f2ecf9d3b191c8540753f49
MD5 d1f9d220a8a924fcb5d4652954530784
BLAKE2b-256 3f0a87c8f9576cdce01ce4302926cb720513c2a1cd010bcfdc189cd4fc363657

See more details on using hashes here.

File details

Details for the file zenroom-2.0.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: zenroom-2.0.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 347.4 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for zenroom-2.0.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 30a442e6a04576a39a9899221d3fe30359b3120e1a6cb11a430492b7ca1342f4
MD5 ca1e9f96f910dc003af4c1ffb4d9c183
BLAKE2b-256 7090083cf5ca46b109d544a23920dd64e59d7a4c528d092fd16947896e1a7ef5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page