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:
- Automatically captures the entity name from the route parameters
- Extracts user information from the request state
- Generates a unique event ID for each event
- Handles errors gracefully with logging
- Works seamlessly with FastAPI dependency injection
Dependencies
- Python 3.x
- azure-servicebus
- fastapi
- logging
- dependency-injector
Contributing
When adding new utilities to this package:
- Place new modules in the appropriate subdirectory under
abs_utils/ - Add proper documentation and type hints
- Update this README with usage examples
- Add tests for new functionality
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file abs_utils-0.4.3.tar.gz.
File metadata
- Download URL: abs_utils-0.4.3.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.13.7 Darwin/23.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5eec8463ce8c6ad93d4829da6d62b4b8fe31b8b3b91c335a6bb124ccad383422
|
|
| MD5 |
1d2113e16941beefd278d62f8830c3c4
|
|
| BLAKE2b-256 |
3cd7682c317f654ba4c69966b0a7ff0ced74f477a062f5a6966494465282b00e
|
File details
Details for the file abs_utils-0.4.3-py3-none-any.whl.
File metadata
- Download URL: abs_utils-0.4.3-py3-none-any.whl
- Upload date:
- Size: 12.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.13.7 Darwin/23.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f16da868da2643496e714739ea75dbb193d8757f85fa8da148ecca14c32af858
|
|
| MD5 |
d7300b9a2f57c00ad90f623caf4b865d
|
|
| BLAKE2b-256 |
435538fcf3e7f65d5578795255df742435cc0fa98ef5bb754f537b552bd52f42
|