Skip to main content

A Python client for interacting with the Znuny ticketing system API.

Project description

pyznuny

PyPI version PyPI license

A Python client for interacting with the Znuny ticketing system API.

Features

  • Simple, typed client built on httpx
  • Ticket create, update, and get routes
  • Easy custom endpoint configuration

Installation

pip install pyznuny

Or with uv:

uv add pyznuny

Documentation

For a complete API Reference and guide on how to use pyznuny, please visit our documentation

Quick start

Create a client and authenticate using environment variables.

from pyznuny import TicketClient
from dotenv import load_dotenv
import os

load_dotenv()

client = TicketClient(
    base_url=os.getenv("HOST"),
    username=os.getenv("USER_LOGIN"),
    password=os.getenv("PASSWORD"),
)

Example .env:

HOST=https://your-znuny-instance.com
USER_LOGIN=your-username
PASSWORD=your-password

Usage examples

Create a ticket

payload = {
    "Ticket": {
        "Title": "Ticket Title",
        "Queue": "Ticket queue",
        "State": "Ticket state",
        "Priority": "Ticket priority",
        "CustomerUser": "customer@example.com",
    },
    "Article": {
        "Subject": "Ticket subject",
        "Body": "Ticket body...",
        "ContentType": "text/plain; charset=utf-8",
        "From": "customer@example.com",
    },
}

response = client.ticket.create(payload=payload)
print(response.json())

Get a ticket by ID

# default endpoint is GET /Ticket/{ticket_id}
response = client.ticket.get(ticket_id=1234)
print(response.json())

Update a ticket

response = client.ticket.update(
    ticket_id=1234,
    Ticket={"State": "open"},
)
print(response.json())

Customize endpoints

If your Znuny instance uses different paths, set them with the endpoint setter.

# Example: custom ticket get endpoint and identifier
client.set_endpoint.ticket_get(endpoint="Tickets/{id}", identifier="id")

response = client.ticket.get(ticket_id=1234)

Notes

  • When username and password are provided, the client logs in and stores session_id automatically.
  • You can pass a pre-configured httpx.Client via client=... if needed.
  • You can send payloads as plain dicts using the same attributes shown in the examples.

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

pyznuny-0.0.15.tar.gz (13.2 kB view details)

Uploaded Source

Built Distribution

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

pyznuny-0.0.15-py3-none-any.whl (10.7 kB view details)

Uploaded Python 3

File details

Details for the file pyznuny-0.0.15.tar.gz.

File metadata

  • Download URL: pyznuny-0.0.15.tar.gz
  • Upload date:
  • Size: 13.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyznuny-0.0.15.tar.gz
Algorithm Hash digest
SHA256 e408b81e4faf369cc8baee6717dd2fb56f341b86d2fd94f8bdb1e946efc444e4
MD5 0cc192e773779d2ae6f3b898b88cd679
BLAKE2b-256 3e18fcc7a578fb244b1ed1c69d221c1b28fd4f99c43da7ad309f6da358e7d6f6

See more details on using hashes here.

File details

Details for the file pyznuny-0.0.15-py3-none-any.whl.

File metadata

  • Download URL: pyznuny-0.0.15-py3-none-any.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyznuny-0.0.15-py3-none-any.whl
Algorithm Hash digest
SHA256 9f76eae6538d38dc2c3a040057136de7e80f2a7e65cb988b28d61e2d3f709c25
MD5 76345dae56549c4b1bd79486fc00b76f
BLAKE2b-256 47354908aa039f546c1f3ab76838133ff86ce3523c400bf7f4f612fff99dd5a9

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