A comprehensive Python module for handling Monero cryptocurrency.
- release 0.5
- 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
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
and monero/ed25519.py
taken from MoneroPy)
Copyright (c) 2011 thomasv@gitorious (monero/seed.py
based on Electrum)
If you find this project useful, please consider a donation to the following address:
481SgRxo8hwBCY4z6r88JrN5X8JFCJYuJUDuJXGybTwaVKyoJPKoGj3hQRAEGgQTdmV1xH1URdnHkJv6He5WkEbq6iKhr94
- Clone the repo
- Create virtualenv & activate it
python3 -m venv .venv
source .venv/bin/activate
- Install dependencies
pip install -r requirements.txt -r test_requirements.txt
- Do your thing
- Run tests
pytest