You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
Michał Sałaban e12ecbaefb
Release 0.4.4
6 years ago
docs Issue a warning when filtering by height but also asking for mempool transactions, fix #37 6 years ago
monero Release 0.4.4 6 years ago
tests Issue a warning when filtering by height but also asking for mempool transactions, fix #37 6 years ago
utils Print addresses for single-account wallets 6 years ago
.editorconfig continuous integration goodies from rooterkyberian (#26) 6 years ago
.gitignore fix & include testing of package distribution 6 years ago
.travis.yml use stable python 3.7 in travis CI 6 years ago
LICENSE.txt Add packaging tools, clean up 6 years ago
MANIFEST.in fix & include testing of package distribution 6 years ago
README.rst Release 0.4.4 6 years ago
requirements.txt Add support for multiple mnemonic wordlist 6 years ago
setup.cfg continuous integration goodies from rooterkyberian (#26) 6 years ago
setup.py mark support for python 3.7 6 years ago
test_requirements.txt continuous integration goodies from rooterkyberian (#26) 6 years ago

README.rst

Python Monero module

====================

|travis|_ |coveralls|_


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


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


A comprehensive Python module for handling Monero cryptocurrency.

* release 0.4.4
* open source: https://github.com/emesik/monero-python
* works with Monero 0.12.x and `the latest source`_ (at least we try to keep up)
* Python 2.x and 3.x compatible
* comes with `documentation`_
* generously funded by `Monero FFS`_ donors

.. _`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`_.

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

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

.. _`LICENSE.txt`: LICENSE.txt
.. _`MoneroPy`: https://github.com/bigreddmachine/MoneroPy
.. _`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

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