Warning
URGENT SECURITY UPDATE The version 1.0.2 contains an urgent security update in the output recognition code. If you're using the module for scanning transactions and identifying outputs using the secret view key, UPDATE THE SOFTWARE IMMEDIATELY. Otherwise you're safe. Standard wallet operations like receiving payments, spending, address generation etc. are NOT AFFECTED.
A comprehensive Python module for handling Monero cryptocurrency.
- release 1.1.1
- open source: https://github.com/monero-ecosystem/monero-python
- works with Monero 0.18.x and the latest source (at least we try to keep up)
- 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.
Released under the BSD 3-Clause License. See LICENSE.txt.
Copyright (c) 2017-2018 Michał Sałaban <[email protected]> and Contributors: lalanza808, cryptochangements34, atward, rooterkyberian, brucexiu, lialsoftlab, moneroexamples, massanchik, MrClottom, jeffro256, sometato, kayabaNerve, j-berman.
Copyright (c) 2016 The MoneroPy Developers (monero/base58.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:
8AWCa5moRywJcmA6jqnKLJWZMUyoEAFJXBqqDonUnR1SjS8foScqTadcXyE6oVb6Mh2JFeWZtocGxZoZZsMqLNKbNm5Wt3q
- Clone the repo
- Create virtualenv & activate it
python3 -m venv .venv
source .venv/bin/activate
- Install dependencies
.venv/bin/pip install -r requirements.txt -r test_requirements.txt
- Do your thing
- Run tests
.venv/bin/pytest
- Format your code with black
.venv/bin/black .