Metadata-Version: 2.4
Name: fundi
Version: 1.3.0
Summary: Dependency injection library
Author-email: Kuyugama <mail.kuyugama@gmail.com>
Project-URL: homepage, https://github.com/KuyuCode/fundi
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: LICENSE.md
Dynamic: license-file

![FunDI logo](https://raw.githubusercontent.com/kuyugama/fundi/refs/heads/main/docs/_static/FunDI_horizontal.png)

# # _FunDI_
> Solution for problem no one had before

> Fun stays for function(or for fun if you wish) and DI for Dependency Injection

This library provides fast(to write!) and convenient(to use!) Dependency Injection 
for functional programming on python.

## Why?  

This library was inspired by FastAPI's dependency injection. The reasons for its existence are simple:  

- **A standalone dependency injection library.** DI shouldn't be tied to a specific framework.  
- **It simplifies code writing.** Dependency injection reduces boilerplate and improves maintainability.  
- **Lack of DI libraries for functional programming in Python.** Or maybe I just didn't want to find one :3  


## No more words, let's try!

```python
from contextlib import ExitStack

from fundi import scan, from_, inject


def require_user():
    return "Alice"


def greet(user: str = from_(require_user)):
    print(f"Hello, {user}!")


with ExitStack() as stack:
    inject({}, scan(greet), stack)
```

See the documentation to get more examples: https://fundi.readthedocs.io/en/latest/
