Python lib for wow
Go to file
Michał Sałaban 13e0581994 Use six 2020-01-22 14:08:36 +01:00
docs Bump up version 2019-12-29 23:22:47 +01:00
monero Use six 2020-01-22 14:08:36 +01:00
tests Add retrieval of transaction from daemon 2019-12-11 23:46:51 +01:00
utils Merge branch 'master' into daemon-gettx 2019-12-29 23:22:30 +01:00
.editorconfig continuous integration goodies from rooterkyberian (#26) 2018-06-12 13:09:35 +02:00
.gitignore fix & include testing of package distribution 2018-06-29 20:46:27 +02:00
.travis.yml python 3.8 support 2019-10-30 22:55:05 +01:00
LICENSE.txt Add packaging tools, clean up 2018-01-28 15:53:52 +01:00
MANIFEST.in fix & include testing of package distribution 2018-06-29 20:46:27 +02:00
README.rst Bump up version 2019-12-29 23:22:47 +01:00
requirements.txt Use six 2020-01-22 14:08:36 +01:00
setup.cfg continuous integration goodies from rooterkyberian (#26) 2018-06-12 13:09:35 +02:00
setup.py python 3.8 support 2019-10-30 22:55:05 +01:00
test_requirements.txt Fix bug in destinations amounts 2019-03-12 11:27:46 +01:00

README.rst

Python Monero module
====================

|travis|_ |coveralls|_


.. |travis| image:: https://travis-ci.org/monero-ecosystem/monero-python.svg
.. _travis: https://travis-ci.org/monero-ecosystem/monero-python


.. |coveralls| image:: https://coveralls.io/repos/github/monero-ecosystem/monero-python/badge.svg
.. _coveralls: https://coveralls.io/github/monero-ecosystem/monero-python


A comprehensive Python module for handling Monero cryptocurrency.

* release 0.6.3
* open source: https://github.com/monero-ecosystem/monero-python
* works with Monero 0.13.x and `the latest source`_ (at least we try to keep up)
* Python 2.x and 3.x compatible
* available on PyPi: https://pypi.org/project/monero/
* comes with `documentation`_
* generously funded by `Monero FFS`_ donors

.. warning:: With release 0.6 the project name at PyPi has changed from `monero-python` to `monero`.
    Please update your dependency files.

.. _`the latest source`: https://github.com/monero-project/monero
.. _`documentation`: http://monero-python.readthedocs.io/en/latest/
.. _`Monero FFS`: https://forum.getmonero.org/9/work-in-progress

Copyrights
----------

Released under the BSD 3-Clause License. See `LICENSE.txt`_.

Copyright (c) 2017-2018 Michał Sałaban <michal@salaban.info> and Contributors: `lalanza808`_, `cryptochangements34`_, `atward`_, `rooterkyberian`_, `brucexiu`_,
`lialsoftlab`_, `moneroexamples`_.

Copyright (c) 2016 The MoneroPy Developers (``monero/base58.py`` taken from `MoneroPy`_)

Copyright (c) 2011-2013 `pyca/ed25519`_ Developers (``monero/ed25519.py``)

Copyright (c) 2011 thomasv@gitorious (``monero/seed.py`` based on `Electrum`_)

.. _`LICENSE.txt`: LICENSE.txt
.. _`MoneroPy`: https://github.com/bigreddmachine/MoneroPy
.. _`pyca/ed25519`: https://github.com/pyca/ed25519
.. _`Electrum`: https://github.com/spesmilo/electrum

.. _`lalanza808`: https://github.com/lalanza808
.. _`cryptochangements34`: https://github.com/cryptochangements34
.. _`atward`: https://github.com/atward
.. _`rooterkyberian`: https://github.com/rooterkyberian
.. _`brucexiu`: https://github.com/brucexiu
.. _`lialsoftlab`: https://github.com/lialsoftlab
.. _`moneroexamples`: https://github.com/moneroexamples

Want to help?
-------------

If you find this project useful, please consider a donation to the following address:
``481SgRxo8hwBCY4z6r88JrN5X8JFCJYuJUDuJXGybTwaVKyoJPKoGj3hQRAEGgQTdmV1xH1URdnHkJv6He5WkEbq6iKhr94``


Development
-----------

1. Clone the repo
2. Create virtualenv & activate it

.. code-block:: bash

    python3 -m venv .venv
    source .venv/bin/activate

3. Install dependencies

.. code-block:: bash

    pip install -r requirements.txt -r test_requirements.txt

4. Do your thing

5. Run tests

.. code-block:: bash

    pytest