Skip to main content

Brinjal

A generic, reusable task management system built with FastAPI and asyncio. Brinjal provides a flexible foundation for building task-based applications with real-time progress updates via Server-Sent Events (SSE).

Features

  • Generic Task Management: Base Task class that can be extended for any type of task
  • Real-time Updates: Server-Sent Events (SSE) for live progress updates
  • Asynchronous Execution: Built on asyncio for high-performance task processing
  • Flexible Integration: No hardcoded prefixes - easily integrated into any FastAPI application
  • Web Components: Reusable frontend components for displaying tasks
  • Progress Tracking: Built-in progress monitoring and status updates

Quick Start

Installation

pip install brinjal

Running the Development Server

# Clone the repository
git clone https://github.com/sg-s/brinjal.git
cd brinjal

# Install dependencies
uv sync

# Run the development server
make dev

The server will start at http://localhost:8000.

End-to-End Testing

  1. Start the server: make dev
  2. Add a task: curl -X POST http://localhost:8000/api/tasks/example_task
  3. View the test page: Open http://localhost:8000/api/tasks/test in your browser
  4. Watch real-time updates: The task will appear and progress in real-time

Usage in Other Projects

Basic Integration

from fastapi import FastAPI
from brinjal.api.router import router as brinjal_router

app = FastAPI()

# Include brinjal with your desired prefix
app.include_router(brinjal_router, prefix="/api/tasks")

Advanced Integration with Custom Endpoints

from fastapi import APIRouter
from brinjal.api.router import router as brinjal_router
from brinjal.manager import task_manager

# Create your main router with the desired prefix
router = APIRouter(prefix="/api/tasks")

# Include all of brinjal's functionality
router.include_router(brinjal_router)

# Add your custom endpoints
@router.post("/custom_task")
async def custom_task():
    # Your custom logic here
    pass

# Include in your main app
app.include_router(router)

Frontend Integration

<!-- Load the TaskList component from your brinjal endpoint -->
<script src="/api/tasks/static/TaskList.js"></script>

<!-- Use the component -->
<task-list base_url="https://yourdomain.com"></task-list>

API Reference

Core Endpoints

  • GET /api/tasks/queue - Get all tasks
  • POST /api/tasks/example_task - Create an example task
  • GET /api/tasks/{task_id}/stream - Stream task updates via SSE
  • GET /api/tasks/static/{file} - Static files (TaskList.js, etc.)

Data Models

  • TaskUpdate: Generic task update model with task_id, task_type, status, progress, img, heading, body

Development

Running Tests

# Run all tests
make test

# Run specific test suites
make test-task-manager
make test-example-task

# Run with coverage
make test-cov

Building Documentation

make docs

Building the Package

make build

Architecture

Brinjal is designed with separation of concerns in mind:

  • Task: Base class for all tasks with common functionality
  • TaskManager: Manages task execution and SSE event generation
  • ExampleTask: Concrete implementation demonstrating task patterns
  • Router: FastAPI router with generic endpoints (no hardcoded prefixes)
  • Static Files: Web components and assets for frontend integration

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests for new functionality
  5. Ensure all tests pass
  6. Submit a pull request

License

MIT License - see LICENSE.txt for details.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

brinjal-0.10.0.tar.gz (1.9 MB view details)

Uploaded Source

Built Distribution

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

brinjal-0.10.0-py3-none-any.whl (40.0 kB view details)

Uploaded Python 3

File details

Details for the file brinjal-0.10.0.tar.gz.

File metadata

  • Download URL: brinjal-0.10.0.tar.gz
  • Upload date:
  • Size: 1.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for brinjal-0.10.0.tar.gz
Algorithm Hash digest
SHA256 f472da040e1d2a1f65dcb555f0ac22e322bf0ebc68234f44d0bb5c9f793048cf
MD5 e236100b423e50c88e708e21eb079a10
BLAKE2b-256 659c6bca7431437840f564153c5508c404404f941997ca56442390de3f214361

See more details on using hashes here.

Provenance

The following attestation bundles were made for brinjal-0.10.0.tar.gz:

Publisher: pypi.yml on sg-s/brinjal

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file brinjal-0.10.0-py3-none-any.whl.

File metadata

  • Download URL: brinjal-0.10.0-py3-none-any.whl
  • Upload date:
  • Size: 40.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for brinjal-0.10.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e6b61def5c29152ce1c8238471382750345907b55e8838d27b1bd6fd5d021789
MD5 6143007e1a333693b8156d7b3725652a
BLAKE2b-256 c4a819c58ada4a2f7f192378bc2cb251d0fc63ed967d8018b47d1f2cadeef21d

See more details on using hashes here.

Provenance

The following attestation bundles were made for brinjal-0.10.0-py3-none-any.whl:

Publisher: pypi.yml on sg-s/brinjal

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.10.0 This release

2 files

0.9.2

2 files

0.9.1

2 files

0.9.0

2 files

0.8.0

2 files

0.7.0

2 files

0.6.0

2 files

0.5.1

2 files

0.5.0

2 files

0.4.0

2 files

0.3.0

2 files

0.2.0

2 files

0.1.3

2 files

0.1.2

2 files

0.1.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page