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.2.6.tar.gz
(16.6 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.2.6-py3-none-any.whl
(21.5 kB
view details)
File details
Details for the file nats_app-0.2.6.tar.gz.
File metadata
- Download URL: nats_app-0.2.6.tar.gz
- Upload date:
- Size: 16.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.12.10 Linux/6.11.0-1012-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8eec1811c4733e996946941be053f325efe083d348a1e311df96e68caff37cf5
|
|
| MD5 |
910a53573c25bd956479586de930b5bc
|
|
| BLAKE2b-256 |
a97a8e949ba95aefc2472b66595f0476a2ec390a37d2207b7d65a37f226f4ae2
|
File details
Details for the file nats_app-0.2.6-py3-none-any.whl.
File metadata
- Download URL: nats_app-0.2.6-py3-none-any.whl
- Upload date:
- Size: 21.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.12.10 Linux/6.11.0-1012-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ef5564c7cf881b8a6aff3c4515391159c657207ca438876ba14323c74494ed7
|
|
| MD5 |
53c68dc27eda92ca22b74f35c18ffd77
|
|
| BLAKE2b-256 |
963bffe2083ca5a70a63a7f7892336c8b2495ffb08adbfeda8c57c4258955690
|