Metadata-Version: 2.1
Name: pymempool
Version: 0.0.2
Summary: Python Api for mempool.space
Home-page: http://www.github.com/holgern/pymempool
Author: Holger Nahrstaedt
Author-email: nahrstaedt@gmail.com
License: UNKNOWN
Description: # mempool.space API wrapper
        
        Python3 wrapper around the [mempool.space](https://www.mempool.space) API (V1)
        
        ### Installation
        PyPI
        ```bash
        pip install pymempool
        ```
        or from source
        ```bash
        git clone https://github.com/holgern/pymempool.git
        cd pymempool
        python3 setup.py install
        ```
        
        ### Usage
        
        ```python
        from pymempool import MempoolAPI
        mp = MempoolAPI()
        ```
        
        
        ### API documentation
        https://mempool.space/docs/api/rest
        
        ### Test
        
        Run unit tests with:
        
        ```
        # after installing pytest using pip3
        pytest tests
        ```
        
        ## License
        [MIT](https://choosealicense.com/licenses/mit/)
        
Keywords: btc,mempool
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
