Metadata-Version: 1.2
Name: nanolib
Version: 0.4.3
Summary: Python library for working with the NANO cryptocurrency protocol
Home-page: https://github.com/Matoking/nanolib
Author: Janne Pulkkinen
Author-email: jannepulk@gmail.com
License: CC0
Description: 
        nanolib
        =======
        
        [![image](https://img.shields.io/pypi/v/nanolib.svg)](https://pypi.org/project/nanolib/)
        [![codecov](https://codecov.io/gh/Matoking/nanolib/branch/master/graph/badge.svg)](https://codecov.io/gh/Matoking/nanolib)
        [![Build Status](https://travis-ci.com/Matoking/nanolib.png?branch=master)](https://travis-ci.com/Matoking/nanolib)
        [![image](https://readthedocs.org/projects/nanolib/badge/?version=latest)](https://nanolib.readthedocs.io/en/latest/?badge=latest)
        
        
        A set of tools for handling functions related to the NANO cryptocurrency protocol.
        
        Features
        ========
        * Solve and verify proof-of-work
        * Create and deserialize legacy and universal blocks
        * Account generation from seed using the same algorithm as the original NANO wallet and NanoVault
        * Functions for converting between different NANO denominations
        * High performance cryptographic operations using C extensions (signing and verifying blocks, and generating block proof-of-work)
          * Proof-of-work generation supports SSE2, SSSE3, SSE4.1, AVX and NEON instruction sets for improved performance. The best supported implementation is selected at runtime with a fallback implementation with universal compatibility.
        * Backed by automated tests
        * Compatible with Python 3.6 and up
        * Licensed under the very permissive *Creative Commons Zero* license
        
        Installation
        ============
        
        You can install the library using pip:
        
        ```
        pip install nanolib
        ```
        
        nanolib requires a working build environment for the C extensions. For example, on Debian-based distros you can install the required Python header files and a C compiler using the following command:
        
        ```
        apt install build-essential python3-dev
        ```
        
        Documentation
        =============
        
        An online copy of the documentation can be found at [Read the Docs](https://nanolib.readthedocs.io/en/latest/).
        
        You can also build the documentation yourself by running `python setup.py build_sphinx`.
        
        Commands
        ========
        
        The `setup.py` script comes with a few additional commands besides installation:
        
        * `build_sphinx`
          * Build the documentation in `build/sphinx/html`.
        * `test`
          * Run tests using pytest
        * `speed`
          * Run a benchmark testing the performance of various cryptographic operations used in the library.
        
        Donations
        =========
        
        **xrb_33psgb1exxuftgjthbz4tsgzm5qmyzawrfzptpmp3nwzousbypqf6bcmrk69**
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Topic :: Office/Business :: Financial
Requires-Python: >=3.6.0
