Metadata-Version: 2.0
Name: esub
Version: 0.0.2
Summary: esub python client library
Home-page: https://github.com/ccpgames/esub-client/
Author: Adam Talsma
Author-email: se-adam@talsma@ccpgames.com
License: UNKNOWN
Download-URL: https://github.com/ccpgames/esub-client/
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Dist: requests

# esub python client library

esub is a super lightweight micro message passing service,
this is a python client library to connect to an esub node

for more details about esub, see its repo: https://github.com/ccpgames/esub


## examples


# subscribing

```python
# this will block until fulfilled or canceled
print(esub.sub("some_key", token="secret"))
```

# replying

```python
# also blocking, but should be a fast response
esub.rep("some_key", "some data", token="secret")
```

