Skip to main content

Python client library for TLQ (Tiny Little Queue)

Project description

TLQ Client for Python

A Python client library for TLQ (Tiny Little Queue), a minimal message queue server written in Rust.

Features

  • Simple, lightweight Python client for TLQ
  • Full support for all TLQ API operations
  • Built-in retry logic with exponential backoff
  • Environment variable configuration
  • Type hints and comprehensive error handling
  • Context manager support
  • Extensive test coverage

Installation

pip install tlq-client

Quick Start

from tlq_client import TLQClient

# Create client with default settings (localhost:1337)
client = TLQClient()

# Add a message to the queue
message_id = client.add_message("Hello, TLQ!")
print(f"Added message: {message_id}")

# Get messages from the queue
messages = client.get_messages(count=1)
for message in messages:
    print(f"Received: {message.body} (ID: {message.id})")
    
    # Process the message...
    # Then delete it from the queue
    client.delete_messages(message.id)

Configuration

Constructor Parameters

client = TLQClient(
    host="localhost",        # TLQ server hostname
    port=1337,              # TLQ server port
    timeout=30.0,           # Request timeout in seconds
    max_retries=3           # Maximum retry attempts
)

Environment Variables

You can also configure the client using environment variables:

  • TLQ_HOST - Server hostname (default: localhost)
  • TLQ_PORT - Server port (default: 1337)
  • TLQ_TIMEOUT - Request timeout in seconds (default: 30.0)
  • TLQ_MAX_RETRIES - Maximum retry attempts (default: 3)
export TLQ_HOST=queue.example.com
export TLQ_PORT=8080
export TLQ_TIMEOUT=60.0
export TLQ_MAX_RETRIES=5

python your_script.py

API Reference

TLQClient

health_check() -> bool

Check if the TLQ server is healthy.

if client.health_check():
    print("TLQ server is running")
else:
    print("TLQ server is not available")

add_message(body: str) -> str

Add a message to the queue. Returns the message ID.

message_id = client.add_message("Process this task")

Note: Messages are limited to 64KB in size.

get_messages(count: int = 1) -> List[TLQMessage]

Retrieve messages from the queue.

# Get one message
messages = client.get_messages()

# Get multiple messages
messages = client.get_messages(count=5)

for message in messages:
    print(f"ID: {message.id}")
    print(f"Body: {message.body}")
    print(f"State: {message.state}")
    print(f"Retry Count: {message.retry_count}")

delete_messages(message_ids: Union[str, List[str]])

Delete processed messages from the queue.

# Delete single message
client.delete_messages(message_id)

# Delete multiple messages
client.delete_messages([id1, id2, id3])

retry_messages(message_ids: Union[str, List[str]])

Return messages to the queue for retry.

# Retry single message
client.retry_messages(message_id)

# Retry multiple messages  
client.retry_messages([id1, id2, id3])

purge_queue()

Clear all messages from the queue.

client.purge_queue()

TLQMessage

Message objects returned by get_messages():

@dataclass
class TLQMessage:
    id: str           # UUID v7 message identifier
    body: str         # Message content
    state: str        # Message state (e.g., "Ready", "Processing")
    retry_count: int  # Number of retry attempts

Error Handling

The client provides specific exception types for different error conditions:

from tlq_client import (
    TLQError,           # Base exception
    TLQConnectionError, # Connection failures
    TLQTimeoutError,    # Request timeouts
    TLQServerError,     # Server errors (4xx, 5xx)
    TLQValidationError  # Client-side validation errors
)

try:
    client.add_message("Hello, TLQ!")
except TLQValidationError as e:
    print(f"Validation error: {e}")
except TLQConnectionError as e:
    print(f"Connection error: {e}")
except TLQTimeoutError as e:
    print(f"Timeout error: {e}")
except TLQServerError as e:
    print(f"Server error: {e} (status: {e.status_code})")
except TLQError as e:
    print(f"TLQ error: {e}")

Context Manager Support

The client can be used as a context manager to ensure proper cleanup:

with TLQClient() as client:
    message_id = client.add_message("Hello!")
    messages = client.get_messages()
    # Session automatically closed when exiting context

Examples

Basic Producer

from tlq_client import TLQClient

def produce_messages():
    with TLQClient() as client:
        for i in range(10):
            message_id = client.add_message(f"Task {i}")
            print(f"Queued task {i}: {message_id}")

if __name__ == "__main__":
    produce_messages()

Basic Consumer

import time
from tlq_client import TLQClient, TLQError

def consume_messages():
    with TLQClient() as client:
        while True:
            try:
                messages = client.get_messages(count=5)
                
                if not messages:
                    print("No messages available, sleeping...")
                    time.sleep(1)
                    continue
                
                for message in messages:
                    try:
                        # Process the message
                        print(f"Processing: {message.body}")
                        time.sleep(0.1)  # Simulate work
                        
                        # Mark as completed
                        client.delete_messages(message.id)
                        print(f"Completed: {message.id}")
                        
                    except Exception as e:
                        print(f"Failed to process {message.id}: {e}")
                        # Return to queue for retry
                        client.retry_messages(message.id)
                        
            except TLQError as e:
                print(f"TLQ error: {e}")
                time.sleep(5)  # Back off on errors

if __name__ == "__main__":
    consume_messages()

Configuration from Environment

import os
from tlq_client import TLQClient

# Set environment variables
os.environ['TLQ_HOST'] = 'queue.myapp.com'
os.environ['TLQ_PORT'] = '8080'
os.environ['TLQ_TIMEOUT'] = '60'

# Client automatically picks up environment configuration
client = TLQClient()
print(f"Connected to {client.config.base_url}")

Development

Setup Development Environment

# Create virtual environment (recommended on macOS/Linux to avoid system Python restrictions)
python3 -m venv venv

# Activate virtual environment
# On macOS/Linux:
source venv/bin/activate
# On Windows:
# venv\Scripts\activate

# Install development dependencies
pip install -e ".[dev]"

Running Tests

# Make sure virtual environment is activated
source venv/bin/activate

# Run tests
pytest

# Run tests with verbose output
pytest -v

# Run tests with coverage
pytest --cov=tlq_client --cov-report=html

# Run specific test file
pytest tests/test_client.py

# Run specific test
pytest tests/test_client.py::TestTLQClient::test_add_message_success

Code Quality

# Format code
black tlq_client tests

# Sort imports  
isort tlq_client tests

# Lint code
flake8 tlq_client tests

# Type checking
mypy tlq_client

Requirements

  • Python 3.7+
  • requests >= 2.25.0

License

MIT License - see LICENSE file for details.

Related Projects

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

tlq_client-0.1.1.tar.gz (12.7 kB view details)

Uploaded Source

Built Distribution

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

tlq_client-0.1.1-py3-none-any.whl (8.3 kB view details)

Uploaded Python 3

File details

Details for the file tlq_client-0.1.1.tar.gz.

File metadata

  • Download URL: tlq_client-0.1.1.tar.gz
  • Upload date:
  • Size: 12.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.6

File hashes

Hashes for tlq_client-0.1.1.tar.gz
Algorithm Hash digest
SHA256 b391bebc2a181aa980d144592ad555714a1b474e9153ce68c388a4b001df50ea
MD5 e4fa142a7f2bf553025e6f28bd414edf
BLAKE2b-256 8ed2d5de087fd8eac8090fa94bb3e987502d876fd88011fad5ea2cc15b587cf0

See more details on using hashes here.

File details

Details for the file tlq_client-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: tlq_client-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 8.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.6

File hashes

Hashes for tlq_client-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d500541e8a5464ea2451f0a54ef9f00a59386102e87e0e52d32c3fe00de4cd02
MD5 996d523d1cb0cd9f890aea6fdbae2cce
BLAKE2b-256 fe9cd302df32d261fb036db0f790d685f82ce63d2446d801c811b60d2246ec9f

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