Metadata-Version: 2.4
Name: bloxplorer
Version: 0.2.0
Summary: Bitcoin blockchain explorer
Home-page: https://github.com/valinsky/bloxplorer
Author: Vali Voicu
Author-email: contact@valinsky.me
License: MIT
Classifier: Programming Language :: Python :: 3.14
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
License-File: LICENSE
Requires-Dist: httpx
Requires-Dist: pydantic
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

*************************
🔥🔥🔥 Bloxplorer 🔥🔥🔥
*************************

======================================
Bitcoin and Liquid Blockchain Explorer
======================================

|CI| |version| |license| |downloads|

**Bloxplorer** is a simple and effective Bitcoin blockchain explorer.

It allows developers to make use of the full power of the `Blockstream Esplora HTTP API
<https://github.com/Blockstream/esplora/blob/master/API.md>`_ through a clean Python interface.

Usage
-----

Using the Bloxplorer package is easy and straightforward, as it should be.

.. code-block:: python

    from bloxplorer import bitcoin_explorer

    response = bitcoin_explorer.blocks.get_last_height()
    print(response.data)
    '869056'

Full documentation is available `here <https://valinsky.github.io/bloxplorer/>`_.

Installation
------------

To install the Bloxplorer package simply run this command in your favorite terminal:

>>> pip install bloxplorer

Links
-----

* `Documentation <https://valinsky.github.io/bloxplorer/>`_
* `GitHub <https://github.com/valinsky/bloxplorer>`_
* `PyPi <https://pypi.org/project/bloxplorer>`_
* `CI <https://github.com/valinsky/bloxplorer/actions/>`_
* `License <https://github.com/valinsky/bloxplorer/blob/main/LICENSE>`_


.. |CI| image:: https://github.com/valinsky/bloxplorer/actions/workflows/test.yml/badge.svg
    :target: https://github.com/valinsky/bloxplorer/actions/

.. |version| image:: https://img.shields.io/badge/version-0.2.0-blue
    :target: https://pypi.org/project/bloxplorer/

.. |license| image:: https://img.shields.io/badge/license-MIT-orange
    :target:  https://github.com/valinsky/bloxplorer/blob/main/LICENSE

.. |downloads| image:: https://static.pepy.tech/badge/bloxplorer
    :target: https://pepy.tech/project/bloxplorer/
