NATS App is wrapper client on NATS Connection
Project description
NATS App
NATS App is wrapper application on NATS Connection
Create NATS Application
NATS_URL = "nats://localhost:4222"
nc = NATSApp(NATS_URL)
await nc.connect()
Add RPC Handler
@nc.push_subscribe("app.test.echo", queue="worker")
async def rpc_func_echo(msg: Any) -> str:
return f"Response with Msg.data: {msg.data}"
Call RPC
res = await nc.request("app.test.echo", {"args": ["test"]})
print(res)
JetStream push subscription
@nc.js_push_subscribe("app.test.js.subs", queue="worker")
async def handler(msg: Msg):
print(msg.data)
await msg.ack()
JetStream pull subscription
@nc.js_pull_subscribe("app.subject.js.subs", batch=1)
async def handler(msgs: list[Msg]):
for m in msgs:
print(m)
await m.ack()
JetStream publish
await nc.js.publish("app.subject.js.subs", b"TEST123")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nats_app-0.6.1.tar.gz
(20.7 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
nats_app-0.6.1-py3-none-any.whl
(26.8 kB
view details)
File details
Details for the file nats_app-0.6.1.tar.gz.
File metadata
- Download URL: nats_app-0.6.1.tar.gz
- Upload date:
- Size: 20.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.12.11 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4ff536b2d7a6fd2a2538c9ab799cb8d022245587fb227d490c867bbdc68a26e
|
|
| MD5 |
b43472c18a0b8d2f06a08fc05251aebb
|
|
| BLAKE2b-256 |
a3bfd0669f83fde80a57e1e5c9bc7abcedabcd76dc12e59fb74edf8cd7013818
|
File details
Details for the file nats_app-0.6.1-py3-none-any.whl.
File metadata
- Download URL: nats_app-0.6.1-py3-none-any.whl
- Upload date:
- Size: 26.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.12.11 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27c31b5f2922393e1daa6126e6f014f5470489d6dd12c1dd46db4bfa71c82011
|
|
| MD5 |
d38bef2a2d0394406ff64928fcce3d75
|
|
| BLAKE2b-256 |
29805a3cb0854cb99321b357a1770856bc116442ca818a370771203a000ab5da
|