Metadata-Version: 2.1
Name: neo3-python
Version: 0.1.1
Summary: Python SDK for the NEO 3 blockchain
Home-page: https://github.com/CityOfZion/neo3-python
Author: Erik van den Brink
Author-email: erik@coz.io
Maintainer: Erik van den Brink
Maintainer-email: erik@coz.io
License: MIT license
Keywords: neo3,python,SDK
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.7
Description-Content-Type: text/x-rst
Requires-Dist: aiodns (==2.0.0)
Requires-Dist: asynctest (==0.13.0)
Requires-Dist: base58 (==1.0.3)
Requires-Dist: bitarray (==1.0.1)
Requires-Dist: coverage (==5.0.2)
Requires-Dist: Events (==0.3)
Requires-Dist: lz4 (==2.2.1)
Requires-Dist: mmh3 (==2.5.1)
Requires-Dist: mpmath (==1.1.0)
Requires-Dist: mypy (==0.761)
Requires-Dist: mypy-extensions (==0.4.3)
Requires-Dist: netaddr (==0.7.19)
Requires-Dist: Sphinx (==2.2.0)
Requires-Dist: sphinx-autodoc-typehints (==1.7.0)
Requires-Dist: pycodestyle (==2.5.0)

.. image:: https://raw.githubusercontent.com/CityOfZion/visual-identity/develop/_CoZ%20Branding/_Logo/_Logo%20icon/_PNG%20200x178px/CoZ_Icon_DARKBLUE_200x178px.png
    :alt: CoZ logo

neo3-python
-----------

.. attention::

   This project has been rebranded to neo-mamba and will no longer receive updates under this package name.

This SDK intends to provide building blocks for Python developers to interact with the NEO blockchain as a means to lower the entry barrier.

It is a work in progress and thus you can expect that not all parts of the blockchain are supported. What is present should be functioning correctly unless explicitely mentioned (e.g. because they depend on structures not yet available).

Please report any issues on `Github <https://github.com/CityOfZion/neo3-python/issues>`_ or submit ideas how to improve the SDK.

Quick install
-------------
::

   pip install wheel neo3-python

or

::

  git clone https://github.com/CityOfZion/neo3-python.git
  cd neo3-python
  pip install wheel -e .


For full documentation including more elaborate install instructions go to `<https://neo3-python.coz
.io/docs/>`_.

Roadmap
-------
Over time the following components are expected to be implemented starting with the items in "SDK Core". As we
release versions and receive feedback components may be added or restructured. Some components may end up living in
separate repositories but be included here by default (e.g. virtual machine implementations).

.. image:: https://raw.githubusercontent.com/CityOfZion/neo3-python/master/docs/source/library/images/SDK_overview.png
    :alt: SDK overview

- Core (v0.1)
- Network (v0.1)
- Storage (v0.1)
- Virtual Machine
- Smart contracts

FAQ
---
1. ``make docs`` fails with ``no theme named 'neo3' found (missing theme.conf?)``. -> ``python setup.py install``.
Try again.


