Skip to main content

A package for updating queue items in a Django service

Project description

Queue Updater

A simple Python package for updating queue items in a Django service.

Installation

pip install anzu_worker

Usage

Using the QueueClient class (recommended)

from anzu_workers import QueueClient

# Initialize with explicit parameters
client = QueueClient(
    django_url="https://your-django-service.com",
    username="admin",
    password="password",
    service_endpoint="/api/queue/"
)

# Update a queue item
client.update_queue_item(
    qi_hash="abc123",
    status="completed",
    data={"result": "success"}
)

# Or initialize using environment variables
import os
os.environ["DJANGO_URL"] = "https://your-django-service.com"
os.environ["DJANGO_SUPERUSER_USERNAME"] = "admin"
os.environ["DJANGO_SUPERUSER_PASSWORD"] = "password"
os.environ["SERVICE_ENDPOINT"] = "/api/queue/"

client = QueueClient()
client.update_queue_item("abc123", "completed")

Using the legacy function (for backward compatibility)

import os
from anzu_worker import update_queue_item

# Set required environment variables
os.environ["DJANGO_URL"] = "https://your-django-service.com"
os.environ["DJANGO_SUPERUSER_USERNAME"] = "admin"
os.environ["DJANGO_SUPERUSER_PASSWORD"] = "password"
os.environ["SERVICE_ENDPOINT"] = "/api/queue/"

# Update a queue item
update_queue_item(
    qi_hash="abc123",
    status="completed",
    data={"result": "success"}
)

Environment Variables

  • DJANGO_URL: URL of the Django service
  • DJANGO_SUPERUSER_USERNAME: Django superuser username
  • DJANGO_SUPERUSER_PASSWORD: Django superuser password
  • SERVICE_ENDPOINT: Service endpoint (defaults to '/')

License

MIT

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

anzu_workers-0.1.2.tar.gz (2.9 kB view details)

Uploaded Source

Built Distribution

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

anzu_workers-0.1.2-py3-none-any.whl (2.6 kB view details)

Uploaded Python 3

File details

Details for the file anzu_workers-0.1.2.tar.gz.

File metadata

  • Download URL: anzu_workers-0.1.2.tar.gz
  • Upload date:
  • Size: 2.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.6

File hashes

Hashes for anzu_workers-0.1.2.tar.gz
Algorithm Hash digest
SHA256 30c4c2d4d8405a4a8eba6c18a3d6528c17bb3891b6d1dd61fec4d597f1d29233
MD5 ad4b5e5478fa1283983fffd1fd493441
BLAKE2b-256 cbbdc651234c15e12117377159357177be74033ab5d3c7d7a27aaaf7c0bd7f26

See more details on using hashes here.

File details

Details for the file anzu_workers-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: anzu_workers-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 2.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.6

File hashes

Hashes for anzu_workers-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 f0db62423bbf2989bf0dd655afd93bc0cfac73524417f6f5e53a229259d3b052
MD5 ef9afdab05a08717d0f3ce18e338268c
BLAKE2b-256 5463d00898d28be3bc10195fd2ac65e359dd4d59342e67c9ec9562cebc1a62ca

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