Skip to main content

AutoBridge Systems Utility Library

Project description

Utils Package

This package provides utility functions and classes for common operations in the application, including logging and Azure Service Bus integration.

Installation

The package is managed using Poetry. To install dependencies:

poetry install

Features

Logger

A simple logging utility that provides a standardized way to set up logging across the application.

Usage

from abs_utils.logger import setup_logger

# Create a logger instance
logger = setup_logger("my_module")

# Use the logger
logger.info("This is an info message")
logger.error("This is an error message")

Azure Service Bus Integration

Provides functionality to interact with Azure Service Bus for message queuing and event handling.

AzureServiceBus Class

A wrapper class for Azure Service Bus operations.

from abs_utils.azure_service_bus import AzureServiceBus

# Initialize the service bus client
service_bus = AzureServiceBus(
    connection_string="your_connection_string",
    queue_name="your_queue_name"
)

# Send a message
await service_bus.send({"key": "value"})

Event Decorator

A decorator that automatically sends events to Azure Service Bus after function execution. This is particularly useful for tracking entity operations in your application.

from fastapi import APIRouter, Depends, Request
from dependency_injector.wiring import inject, Provide
from abs_utils.azure_service_bus import azure_event_decorator, AzureServiceBus

router = APIRouter()

@router.post("/{entity_name}/records")
@inject
@azure_event_decorator(event_type="record_created")
async def create_record(
    entity_name: str,
    data: dict,
    request: Request,
    azure_service_bus: AzureServiceBus = Depends(Provide[Container.azure_service_bus]),
    service: YourService = Depends(Provide[Container.yourService])
):
    # Your function logic here
    return await service.create(data, entity_name)

The decorator automatically creates and sends an event payload with the following structure:

{
    "event_id": "uuid",
    "event_type": "record_created",
    "entity_name": "your_entity_name",
    "entity_id": "record_id",
    "payload": {
        // Your data payload
    },
    "user": {
        "id": "user_id",
        "uuid": "user_uuid",
        "email": "user_email",
        "name": "user_name"
    }
}

Key features of the decorator:

  1. Automatically captures the entity name from the route parameters
  2. Extracts user information from the request state
  3. Generates a unique event ID for each event
  4. Handles errors gracefully with logging
  5. Works seamlessly with FastAPI dependency injection

Dependencies

  • Python 3.x
  • azure-servicebus
  • fastapi
  • logging
  • dependency-injector

Contributing

When adding new utilities to this package:

  1. Place new modules in the appropriate subdirectory under abs_utils/
  2. Add proper documentation and type hints
  3. Update this README with usage examples
  4. Add tests for new functionality

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

abs_utils-0.2.7.tar.gz (7.4 kB view details)

Uploaded Source

Built Distribution

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

abs_utils-0.2.7-py3-none-any.whl (10.7 kB view details)

Uploaded Python 3

File details

Details for the file abs_utils-0.2.7.tar.gz.

File metadata

  • Download URL: abs_utils-0.2.7.tar.gz
  • Upload date:
  • Size: 7.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.2 CPython/3.13.3 Darwin/23.6.0

File hashes

Hashes for abs_utils-0.2.7.tar.gz
Algorithm Hash digest
SHA256 6c7f5fbda790cca586ef753fda41f8d54ff7af0f5a7f5039e5e5fc347b5ada30
MD5 ac7181c41d204e1696e219aea0c9d995
BLAKE2b-256 46d8f0a3747c34a3a14354ee3a60e47b5a5977334b2003d272a00aec2d6bef65

See more details on using hashes here.

File details

Details for the file abs_utils-0.2.7-py3-none-any.whl.

File metadata

  • Download URL: abs_utils-0.2.7-py3-none-any.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.2 CPython/3.13.3 Darwin/23.6.0

File hashes

Hashes for abs_utils-0.2.7-py3-none-any.whl
Algorithm Hash digest
SHA256 53d1d7ff4881c08a1380ced964247563b631968fb0b40fe858c7e52d5d9b8468
MD5 2971c6ca93428dc1c744bd1a2eb0a328
BLAKE2b-256 553cc3eb7dc34b207e1d83ab219c17a6380125305d53973e34c0fc1fe4ddab0c

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