Metadata-Version: 2.1
Name: pylibbitcoin
Version: 0.1.0
Summary: Python bindings for libbitcoin-server ZMQ interface
Home-page: https://github.com/libbitcoin/pylibbitcoin
Author: libbitcoin
Author-email: harmaarts@gmail.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/libbitcoin/pylibbitcoin/issues
Project-URL: Source, https://github.com/libbitcoin/pylibbitcoin/
Keywords: bitcoin libbitcoin blockchain library zmq
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
Provides-Extra: test
Provides-Extra: dev
Requires-Dist: pyzmq
Requires-Dist: python-bitcoinlib
Requires-Dist: anytree
Provides-Extra: dev
Requires-Dist: flake8; extra == 'dev'
Provides-Extra: test
Requires-Dist: asynctest; extra == 'test'

This library exposes the Query Service of [libbitcoin-server](https://github.com/libbitcoin/libbitcoin-server).

# Requirements

- `python3-dev`


# Tests

The project uses `unittest` and can be run with:

```
$ python3 -m unittest
```

# Example

The project contains a trivial CLI example. Set `$PYTHONPATH` to include the project root (typically `cd <path-to-project> && export PYTHONPATH=.`).
Then run with:

```
$ python3 examples/cli.py last_height
```


