Python FLO library
Go to file
2022-07-09 13:56:17 +05:30
docs Changing private and public keys from BTC to FLO 2019-06-04 17:05:32 +05:30
pyflo Added support for old and new sign_message 2022-07-09 13:56:17 +05:30
.gitignore Changing private and public keys from BTC to FLO 2019-06-04 17:05:32 +05:30
change.log sign bare multisig inputs 2018-07-08 22:06:03 +04:00
LICENSE Create LICENSE 2018-01-16 12:00:03 +04:00
README.md fix to universal recognize hrp 2019-03-16 00:14:24 +04:00
requirements.txt Initial commit 2018-01-10 18:02:32 +04:00
setup.py replace hexlify to hex() 2019-03-14 17:56:20 +04:00
tanishktests.py Signing Complete 2022-02-16 15:46:16 +05:30
tests.py relocation tests directory 2018-07-03 16:04:32 +04:00

Python bitcoin library

Current version is 2.0

Feature Support

  • Basic functions
  • Supports addresses types PUBKEY, P2PKH, P2SH, P2SH-PWPKH, P2WPKH, P2WSH.
  • Supports BIP32(Hierarchical Deterministic Wallets), BIP39(Mnemonic code generation)
  • Supports BIP141(Segregated Witness)
  • Transaction constructor

Installation

To install pybtc, simply use pip

$ git clone https://github.com/bitaps-com/pybtc
$ cd pybtc
$ python3 setup.py install

Dependencies

  • Python 3.3.3+
  • secp256k1

Documentation

Documentation is available at https://pybtc.readthedocs.io

How to Contribute

In order to make a clone of the GitHub repo: open the link and press the “Fork” button on the upper-right menu of the web page.

Workflow is pretty straightforward:

  1. Clone the GitHub
  2. Make a change
  3. Make sure all tests passed
  4. Add a record into file into change.log.
  5. Commit changes to own pybtc clone
  6. Make pull request from github page for your clone against master branch