Metadata-Version: 1.1
Name: PyOTA
Version: 2.0.0b3
Summary: IOTA API library for Python
Home-page: https://github.com/iotaledger/iota.lib.py
Author: Phoenix Zerin
Author-email: phx@phx.ph
License: MIT
Description: .. image:: https://travis-ci.org/iotaledger/iota.lib.py.svg?branch=develop
           :target: https://travis-ci.org/iotaledger/iota.lib.py
        
        =====
        PyOTA
        =====
        .. warning::
           ⚠️ This is pre-release software; it may have performance or stability issues.
           Please do not use this software on mainnet until v2.0.0 stable is released. ⚠️
        
        This is the official Python library for the IOTA Core.
        
        It implements both the `official API`_, as well as newly-proposed functionality
        (such as signing, bundles, utilities and conversion).
        
        Join the Discussion
        ===================
        If you want to get involved in the community, need help with getting setup,
        have any issues related with the library or just want to discuss Blockchain,
        Distributed Ledgers and IoT with other people, feel free to join our `Slack`_.
        
        You can also ask questions on our `dedicated forum`_.
        
        If you encounter any issues while using PyOTA, please report them using the
        `PyOTA Bug Tracker`_.
        
        ============
        Dependencies
        ============
        PyOTA is compatible with Python 3.6, 3.5 and 2.7.
        
        ============
        Installation
        ============
        .. warning::
           ⚠️ This is pre-release software; it may have performance or stability issues.
           Please do not use this software on mainnet until v2.0.0 stable is released. ⚠️
        
        To install the latest version::
        
          pip install --pre pyota
        
        Optional C Extension
        ====================
        PyOTA has an optional C extension that improves the performance of its
        cryptography features significantly (speedups of **60x** are common!).
        
        To install this extension, use the following command::
        
           pip install --pre pyota[ccurl]
        
        
        Installing from Source
        ======================
        
        1. `Create virtualenv`_ (recommended, but not required).
        2. ``git clone https://github.com/iotaledger/iota.lib.py.git``
        3. ``pip install -e .``
        
        Running Unit Tests
        ------------------
        To run unit tests after installing from source::
        
          python setup.py test
        
        PyOTA is also compatible with `tox`_::
        
          pip install tox
          tox
        
        =============
        Documentation
        =============
        For the full documentation of this library, please refer to the
        `official API`_
        
        
        .. _Create virtualenv: https://virtualenvwrapper.readthedocs.io/
        .. _PyOTA Bug Tracker: https://github.com/iotaledger/iota.lib.py/issues
        .. _Slack: https://slack.iota.org/
        .. _dedicated forum: https://forum.iota.org/
        .. _official API: https://iota.readme.io/
        .. _tox: https://tox.readthedocs.io/
        
Keywords: iota,tangle,iot,internet of things,api,library,cryptocurrency,balanced ternary
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
