python-bitcoinlib


Namepython-bitcoinlib JSON
Version 0.12.2 PyPI version JSON
download
home_pagehttps://github.com/petertodd/python-bitcoinlib
SummaryThe Swiss Army Knife of the Bitcoin protocol.
upload_time2023-06-03 18:37:11
maintainer
docs_urlNone
author
requires_python
license
keywords bitcoin
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            # python-bitcoinlib

This Python3 library provides an easy interface to the bitcoin data
structures and protocol. The approach is low-level and "ground up", with a
focus on providing tools to manipulate the internals of how Bitcoin works.

"The Swiss Army Knife of the Bitcoin protocol." - Wladimir J. van der Laan


## Requirements

    sudo apt-get install libssl-dev

The RPC interface, `bitcoin.rpc`, should work with Bitcoin Core v24.0 or later.
Older versions may work but there do exist some incompatibilities.


## Structure

Everything consensus critical is found in the modules under bitcoin.core. This
rule is followed pretty strictly, for instance chain parameters are split into
consensus critical and non-consensus-critical.

    bitcoin.core            - Basic core definitions, datastructures, and
                              (context-independent) validation
    bitcoin.core.key        - ECC pubkeys
    bitcoin.core.script     - Scripts and opcodes
    bitcoin.core.scripteval - Script evaluation/verification
    bitcoin.core.serialize  - Serialization

In the future the bitcoin.core may use the Satoshi sourcecode directly as a
library. Non-consensus critical modules include the following:

    bitcoin          - Chain selection
    bitcoin.base58   - Base58 encoding
    bitcoin.bloom    - Bloom filters (incomplete)
    bitcoin.net      - Network communication (in flux)
    bitcoin.messages - Network messages (in flux)
    bitcoin.rpc      - Bitcoin Core RPC interface support
    bitcoin.wallet   - Wallet-related code, currently Bitcoin address and
                       private key support

Effort has been made to follow the Satoshi source relatively closely, for
instance Python code and classes that duplicate the functionality of
corresponding Satoshi C++ code uses the same naming conventions: CTransaction,
CBlockHeader, nValue etc. Otherwise Python naming conventions are followed.


## Mutable vs. Immutable objects

Like the Bitcoin Core codebase CTransaction is immutable and
CMutableTransaction is mutable; unlike the Bitcoin Core codebase this
distinction also applies to COutPoint, CTxIn, CTxOut, and CBlock.


## Endianness Gotchas

Rather confusingly Bitcoin Core shows transaction and block hashes as
little-endian hex rather than the big-endian the rest of the world uses for
SHA256. python-bitcoinlib provides the convenience functions x() and lx() in
bitcoin.core to convert from big-endian and little-endian hex to raw bytes to
accommodate this. In addition see b2x() and b2lx() for conversion from bytes to
big/little-endian hex.


## Module import style

While not always good style, it's often convenient for quick scripts if
`import *` can be used. To support that all the modules have `__all__` defined
appropriately.


# Example Code

See `examples/` directory. For instance this example creates a transaction
spending a pay-to-script-hash transaction output:

    $ PYTHONPATH=. examples/spend-p2sh-txout.py
    <hex-encoded transaction>


## Selecting the chain to use

Do the following:

    import bitcoin
    bitcoin.SelectParams(NAME)

Where NAME is one of 'testnet', 'mainnet', 'signet', or 'regtest'. The chain currently
selected is a global variable that changes behavior everywhere, just like in
the Satoshi codebase.


## Unit tests

Under bitcoin/tests using test data from Bitcoin Core. To run them:

    python3 -m unittest discover

Alternately, if Tox (see https://tox.readthedocs.org/) is available on your
system, you can run unit tests for multiple Python versions:

    ./runtests.sh

HTML coverage reports can then be found in the htmlcov/ subdirectory.


## Documentation

Sphinx documentation is in the "doc" subdirectory. Run "make help" from there
to see how to build. You will need the Python "sphinx" package installed.

Currently this is just API documentation generated from the code and
docstrings. Higher level written docs would be useful, perhaps starting with
much of this README. Pages are written in reStructuredText and linked from
index.rst.



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/petertodd/python-bitcoinlib",
    "name": "python-bitcoinlib",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "bitcoin",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/90/a1/ca9d770094a0bfd0f2ce66b7180f0a7729b1b646d90f37f6debf38b28fab/python-bitcoinlib-0.12.2.tar.gz",
    "platform": null,
    "description": "# python-bitcoinlib\n\nThis Python3 library provides an easy interface to the bitcoin data\nstructures and protocol. The approach is low-level and \"ground up\", with a\nfocus on providing tools to manipulate the internals of how Bitcoin works.\n\n\"The Swiss Army Knife of the Bitcoin protocol.\" - Wladimir J. van der Laan\n\n\n## Requirements\n\n    sudo apt-get install libssl-dev\n\nThe RPC interface, `bitcoin.rpc`, should work with Bitcoin Core v24.0 or later.\nOlder versions may work but there do exist some incompatibilities.\n\n\n## Structure\n\nEverything consensus critical is found in the modules under bitcoin.core. This\nrule is followed pretty strictly, for instance chain parameters are split into\nconsensus critical and non-consensus-critical.\n\n    bitcoin.core            - Basic core definitions, datastructures, and\n                              (context-independent) validation\n    bitcoin.core.key        - ECC pubkeys\n    bitcoin.core.script     - Scripts and opcodes\n    bitcoin.core.scripteval - Script evaluation/verification\n    bitcoin.core.serialize  - Serialization\n\nIn the future the bitcoin.core may use the Satoshi sourcecode directly as a\nlibrary. Non-consensus critical modules include the following:\n\n    bitcoin          - Chain selection\n    bitcoin.base58   - Base58 encoding\n    bitcoin.bloom    - Bloom filters (incomplete)\n    bitcoin.net      - Network communication (in flux)\n    bitcoin.messages - Network messages (in flux)\n    bitcoin.rpc      - Bitcoin Core RPC interface support\n    bitcoin.wallet   - Wallet-related code, currently Bitcoin address and\n                       private key support\n\nEffort has been made to follow the Satoshi source relatively closely, for\ninstance Python code and classes that duplicate the functionality of\ncorresponding Satoshi C++ code uses the same naming conventions: CTransaction,\nCBlockHeader, nValue etc. Otherwise Python naming conventions are followed.\n\n\n## Mutable vs. Immutable objects\n\nLike the Bitcoin Core codebase CTransaction is immutable and\nCMutableTransaction is mutable; unlike the Bitcoin Core codebase this\ndistinction also applies to COutPoint, CTxIn, CTxOut, and CBlock.\n\n\n## Endianness Gotchas\n\nRather confusingly Bitcoin Core shows transaction and block hashes as\nlittle-endian hex rather than the big-endian the rest of the world uses for\nSHA256. python-bitcoinlib provides the convenience functions x() and lx() in\nbitcoin.core to convert from big-endian and little-endian hex to raw bytes to\naccommodate this. In addition see b2x() and b2lx() for conversion from bytes to\nbig/little-endian hex.\n\n\n## Module import style\n\nWhile not always good style, it's often convenient for quick scripts if\n`import *` can be used. To support that all the modules have `__all__` defined\nappropriately.\n\n\n# Example Code\n\nSee `examples/` directory. For instance this example creates a transaction\nspending a pay-to-script-hash transaction output:\n\n    $ PYTHONPATH=. examples/spend-p2sh-txout.py\n    <hex-encoded transaction>\n\n\n## Selecting the chain to use\n\nDo the following:\n\n    import bitcoin\n    bitcoin.SelectParams(NAME)\n\nWhere NAME is one of 'testnet', 'mainnet', 'signet', or 'regtest'. The chain currently\nselected is a global variable that changes behavior everywhere, just like in\nthe Satoshi codebase.\n\n\n## Unit tests\n\nUnder bitcoin/tests using test data from Bitcoin Core. To run them:\n\n    python3 -m unittest discover\n\nAlternately, if Tox (see https://tox.readthedocs.org/) is available on your\nsystem, you can run unit tests for multiple Python versions:\n\n    ./runtests.sh\n\nHTML coverage reports can then be found in the htmlcov/ subdirectory.\n\n\n## Documentation\n\nSphinx documentation is in the \"doc\" subdirectory. Run \"make help\" from there\nto see how to build. You will need the Python \"sphinx\" package installed.\n\nCurrently this is just API documentation generated from the code and\ndocstrings. Higher level written docs would be useful, perhaps starting with\nmuch of this README. Pages are written in reStructuredText and linked from\nindex.rst.\n\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "The Swiss Army Knife of the Bitcoin protocol.",
    "version": "0.12.2",
    "project_urls": {
        "Homepage": "https://github.com/petertodd/python-bitcoinlib"
    },
    "split_keywords": [
        "bitcoin"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7546b388d0885cf799f5bc66ca9995c83e5b7e17cb737f812a7c2591aa789ea6",
                "md5": "10731266bf9b79e8d9e7c9274fac870c",
                "sha256": "2f29a9f475f21c12169b3a6cc8820f34f11362d7ff1200a5703dce3e4e903a44"
            },
            "downloads": -1,
            "filename": "python_bitcoinlib-0.12.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "10731266bf9b79e8d9e7c9274fac870c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 106954,
            "upload_time": "2023-06-03T18:37:08",
            "upload_time_iso_8601": "2023-06-03T18:37:08.524441Z",
            "url": "https://files.pythonhosted.org/packages/75/46/b388d0885cf799f5bc66ca9995c83e5b7e17cb737f812a7c2591aa789ea6/python_bitcoinlib-0.12.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90a1ca9d770094a0bfd0f2ce66b7180f0a7729b1b646d90f37f6debf38b28fab",
                "md5": "aaf333830db0bbb513fee4558a3e038d",
                "sha256": "c65ab61427c77c38d397bfc431f71d86fd355b453a536496ec3fcb41bd10087d"
            },
            "downloads": -1,
            "filename": "python-bitcoinlib-0.12.2.tar.gz",
            "has_sig": false,
            "md5_digest": "aaf333830db0bbb513fee4558a3e038d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 153798,
            "upload_time": "2023-06-03T18:37:11",
            "upload_time_iso_8601": "2023-06-03T18:37:11.091170Z",
            "url": "https://files.pythonhosted.org/packages/90/a1/ca9d770094a0bfd0f2ce66b7180f0a7729b1b646d90f37f6debf38b28fab/python-bitcoinlib-0.12.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-03 18:37:11",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "petertodd",
    "github_project": "python-bitcoinlib",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "tox": true,
    "lcname": "python-bitcoinlib"
}
        
Elapsed time: 0.07547s