Skip to main content

Merkle Tree implementation for Python3.

Project description

# nr-merkletree
Python-3 compatible Merkle tree implementation.

#### Current Stable Version
```
0.1.3
```


# Install

### Pip
```
pip install nr-merkletree
```

### Development Installation
* Clone the project.
* Install in Anaconda3 environment
```
$ conda env create --force -f dev_environment.yml
$ source activate nr-merkletree
$ pip install -e .
```


# Test
To run the tests:
```
make test
```


# Usage
```python
from nr_merkletree import MerkleTree
from pprint import pprint

# A list of bytes data
data_chunks = [b'0', b'1', b'2', b'3', b'4']

# Create merkle_tree
merkle_tree = MerkleTree(data_chunks)

# Print out Merkle Tree
pprint(merkle_tree.tree.to_dict())
```


# Examples
```
$ python examples/simple_merkle_tree.py
```


# License
MIT

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

nr-merkletree-0.1.3.tar.gz (4.2 kB view hashes)

Uploaded Source

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