معرفی شرکت ها


eth-mpt-0.2.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A simlpe Merkle Patricia Trie implementation
ویژگی مقدار
سیستم عامل -
نام فایل eth-mpt-0.2.0
نام eth-mpt
نسخه کتابخانه 0.2.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Igor Aleksanov
ایمیل نویسنده popzxc@yandex.com
آدرس صفحه اصلی https://github.com/popzxc/merkle-patricia-trie
آدرس اینترنتی https://pypi.org/project/eth-mpt/
مجوز -
# Modified Merkle Paticia Trie MPT is the data structure used in [Ethereum](https://www.ethereum.org/) as a cryptographically authenticated key-value data storage. This library is a Python implementation of Modified Merkle Patrica Trie with a very simple interface. ## Example ```python storage = {} trie = MerklePatriciaTrie(storage) trie.update(b'do', b'verb') trie.update(b'dog', b'puppy') trie.update(b'doge', b'coin') trie.update(b'horse', b'stallion') old_root = trie.root() old_root_hash = trie.root_hash() print("Root hash is {}".format(old_root_hash.hex())) trie.delete(b'doge') print("New root hash is {}".format(trie.root_hash().hex())) trie_from_old_hash = MerklePatriciaTrie(storage, root=old_root) print(trie_from_old_hash.get(b'doge')) try: print(trie.get(b'doge')) except KeyError: print('Not accessible in a new trie.') ``` ## Installing Install and update using [pip](https://pip.pypa.io/en/stable/quickstart/): ``` pip install -U eth_mpt ``` ## Documentation Documentation can be found on [readthedocs](https://merkle-patricia-trie.readthedocs.io/en/latest/). ## Contributing All the contributors are welcome. If you can make this library better, don't hesitate to :) ## Testing ```bash python -m unittest ```


نیازمندی

مقدار نام
==0.9.0.1 cytoolz
==0.2.0 eth-hash
==2.0.0 eth-typing
==1.4.1 eth-utils
==3.7.3 pycryptodome
==1.1.0 rlp
==0.9.0 toolz


نحوه نصب


نصب پکیج whl eth-mpt-0.2.0:

    pip install eth-mpt-0.2.0.whl


نصب پکیج tar.gz eth-mpt-0.2.0:

    pip install eth-mpt-0.2.0.tar.gz