Skip to main content

remnawave-client

Sync and async client for the Remnawave API, generated from the panel's OpenAPI specification.

pip install remnawave-client

Requires Python 3.11 or newer.

Versions

The library version equals the API version it was generated from. A tag exists for every minor release of the panel from 2.0 onwards, so pin the one matching your deployment:

pip install remnawave-client==<your panel version>

Quick start

from remnawave import Remnawave

with Remnawave("https://panel.example.com", token) as rw:
    user = rw.users.get_user_by_username("zen")
    print(user.username, user.status, user.expire_at)

    for u in rw.users.iter_users():
        print(u.username)

The async client mirrors it:

import asyncio

from remnawave import AsyncRemnawave

async def main() -> None:
    async with AsyncRemnawave("https://panel.example.com", token) as rw:
        stats = await rw.system.get_stats()
        nodes = await rw.nodes.get_nodes()
        async for user in rw.users.iter_users():
            print(user.username)

asyncio.run(main())

More in examples/: pagination, partial updates, error handling, webhooks and swapping out the client's parts.

Background jobs

Some checks run as panel jobs: one request starts the job and returns a jobId, another polls its status. wait_* does both and returns the result:

result = rw.connections.wait_connections_by_user(user_id, timeout=120)
for node in result.nodes:
    print(node.node_name, [ip.ip for ip in node.ips])

A job the panel reports as failed raises JobFailedError; one still running after timeout seconds raises JobTimeoutError. The underlying start and poll methods stay available.

Errors

Everything the library raises inherits from RemnawaveError. Below it the hierarchy splits by cause: ApiError for anything the panel answered with, TransportError when the request never got a reply, SerializationError when the payload did not match the schema.

from remnawave.exceptions import NotFoundError

try:
    rw.users.get_user_by_id(42)
except NotFoundError as error:
    print(error.status, error.error_code)  # 404 'A025'

error_code is the panel's own code and is more specific than the HTTP status — branch on it when you need to tell cases apart.

Webhooks

from remnawave.webhooks import SIGNATURE_HEADER, WebhookReceiver

hooks = WebhookReceiver(secret=os.environ["WEBHOOK_SECRET_HEADER"])
event = hooks.receive(request.body, request.headers[SIGNATURE_HEADER])

if event.scope == "user":
    print(event.event, event.data.username)

Pass the raw request body: the signature covers those exact bytes, so re-serialising parsed JSON breaks verification.

Regenerating

src/remnawave/_generated/ is machine-written and must not be edited by hand. Regenerating it against the version the package declares takes no arguments:

python -m tools.codegen

To move the project onto a newer panel release, drop its specification into specs/ and pass the version once:

python -m tools.codegen <version>

Where the specification is wrong or awkward, overlay.yaml patches it before generation: type names, forced field types, fields kept out of repr. Editing the generated code directly would be lost on the next run; editing the vendored specification would be lost on the next update.

Release files for remnawave-client 3.4.4.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for remnawave-client 3.4.4.1
File Size Uploaded
remnawave_client-3.4.4.1.tar.gz 42.2 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for remnawave-client 3.4.4.1
File Interpreter ABI Platform
remnawave_client-3.4.4.1-py3-none-any.whl Python 3 none any Details

Total release size: 108.4 kB

Release files / remnawave_client-3.4.4.1.tar.gz

Download URL remnawave_client-3.4.4.1.tar.gz
Size 42.2 kB
Tags Source
SHA-256 checksum
How to use checksums
4d52dae4904e55b41cb462b3c776ae82e3919ba60c48e5b6c4c7469d84c8277b
BLAKE2b-256 checksum
How to use checksums
6707801495b853b7966176b0b07201c44549562195cecd816a8676375ff758c8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / remnawave_client-3.4.4.1-py3-none-any.whl

Download URL remnawave_client-3.4.4.1-py3-none-any.whl
Size 66.1 kB
Tags Python 3
SHA-256 checksum
How to use checksums
1ca16dc7f1f8af5dd4c12ce1482c5a49747326cd42f7b01f08c271353eefe934
BLAKE2b-256 checksum
How to use checksums
5027943556e51cb5404a8940b3f0e59585dcfc249dd4c24defe66333fe367c3b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release history Release notifications | RSS feed

This release

3.4.4.1 This release

2 release files

3.4.4

2 release files

3.4.3

2 release files

3.3.2

2 release files

3.2.3

2 release files

3.1.0

1 release file

3.0.0

2 release files

2.8.1

2 release files

2.7.4

2 release files

2.6.4

1 release file

2.5.7

1 release file

2.4.4

2 release files

2.3.2

2 release files

2.2.6

2 release files

2.0.8

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page