Metadata-Version: 2.4
Name: inversipy
Version: 0.2.1
Summary: A powerful and type-safe dependency injection/IoC library for Python
License: MIT
License-File: LICENSE
Keywords: dependency-injection,ioc,inversion-of-control,di,container
Author: inversipy contributors
Requires-Python: >=3.12
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Project-URL: Homepage, https://github.com/mottetm/inversipy
Project-URL: Repository, https://github.com/mottetm/inversipy
Description-Content-Type: text/markdown

# inversipy

A powerful and type-safe dependency injection/IoC (Inversion of Control) library for Python 3.12+.

## Features

- **Type annotation-based** - Dependencies resolved using Python type hints
- **Pure classes** - No container coupling; classes remain framework-agnostic
- **Zero runtime dependencies** - Pure Python
- **Async-first** - First-class support for async dependencies and factories
- **Module system** - Organize dependencies with public/private access control
- **Multiple scopes** - Singleton, Transient, and Request
- **Named dependencies** - Multiple implementations with named disambiguation
- **Collection injection** - Register and inject multiple implementations with `InjectAll`
- **Optional dependencies** - `T | None` parameters resolve to `None` when unregistered
- **Container freezing** - Lock the container after configuration
- **Validation** - Catch configuration errors at startup
- **FastAPI integration** - `@inject` decorator for route handlers
- **Full type safety** - Strict MyPy support with `py.typed` marker

## Installation

```bash
pip install inversipy
```

## Quick Start

```python
from inversipy import Container, Scopes

class Database:
    def query(self, sql: str) -> list:
        return ["result"]

class UserRepository:
    def __init__(self, db: Database) -> None:
        self.db = db

    def get_users(self) -> list:
        return self.db.query("SELECT * FROM users")

class UserService:
    def __init__(self, repo: UserRepository) -> None:
        self.repo = repo

    def list_users(self) -> list:
        return self.repo.get_users()

# Create container and register dependencies
container = Container()
container.register(Database, scope=Scopes.SINGLETON)
container.register(UserRepository)
container.register(UserService)

# Validate and freeze
container.validate()
container.freeze()

# Resolve dependencies
service = container.get(UserService)
users = service.list_users()
```

## Documentation

Full documentation is available at the [documentation site](https://mottetm.github.io/inversipy/).

- [Getting Started](https://mottetm.github.io/inversipy/getting-started/)
- [Core Concepts](https://mottetm.github.io/inversipy/core/container/)
- [Injection Patterns](https://mottetm.github.io/inversipy/injection/constructor/)
- [FastAPI Integration](https://mottetm.github.io/inversipy/integrations/fastapi/)
- [Testing](https://mottetm.github.io/inversipy/advanced/testing/)
- [Best Practices](https://mottetm.github.io/inversipy/best-practices/)

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

## License

MIT License - see LICENSE file for details.

## Similar Projects

- [dependency-injector](https://python-dependency-injector.ets-labs.org/)
- [injector](https://github.com/alecthomas/injector)
- [lagom](https://github.com/meadsteve/lagom)

