Skip to main content

NATS App is wrapper client on NATS Connection

Project description

NATS App

pypi versions test Apache 2 licensed

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


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.3.0.tar.gz (19.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nats_app-0.3.0-py3-none-any.whl (25.8 kB view details)

Uploaded Python 3

File details

Details for the file nats_app-0.3.0.tar.gz.

File metadata

  • Download URL: nats_app-0.3.0.tar.gz
  • Upload date:
  • Size: 19.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.12.10 Linux/6.11.0-1013-azure

File hashes

Hashes for nats_app-0.3.0.tar.gz
Algorithm Hash digest
SHA256 150714084b57adcab4d82b8ab171e34e88c3077c7a419d3a95c5dde83a94786d
MD5 9bb62717ec499b497cdbe5a7c8f7f7b1
BLAKE2b-256 c34da58379618f13749c6a979dbb608b4721f006a9a7e956a1394de26f75fbcd

See more details on using hashes here.

File details

Details for the file nats_app-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: nats_app-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 25.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.12.10 Linux/6.11.0-1013-azure

File hashes

Hashes for nats_app-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 50580918e51049eb0e404c7a4427ec3bca35882574f7214c8db43f706317768a
MD5 b9e87687ebcdbcbe5b86b4ff32f4b33b
BLAKE2b-256 e849b84c74f8bb4b35ea4f4f39467bcd4a4f01412c7368a602e93d95125ef2c8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page