Metadata-Version: 2.1
Name: nats-publish
Version: 0.1.3
Summary: Minimal go-nats publisher package
Home-page: http://github.com/rhnvrm/nats-publish-py
Author: Rohan Verma
Author-email: hello@rohanverma.net
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown

# nats-publish

Minimal go-nats protocol based publish-only client written in python.

## Example

```py
from nats_publish import NatsPublish

np = NatsPublish(conn_options={
            "hostname": "demo.nats.io",
            "port": 4222,
        })

np.publish(msg='hello world', subject="foo")
```

