Functional dependency paradigm
Project description
supply-demand
A Python library for dependency orchestration and “demand/supply” resolution (function DI).
Inspired by advanced dependency-injection/inversion control, it lets you register “supplier” functions by key/type, and lets any supplier demand values from others—allowing composition, overrides, and dependency graphs.
Features
- Register “suppliers” (functions) for different types/keys
- Compose suppliers & override them dynamically
- Pass context (scope) through demands
- Supports both, async and sync suppliers
- Auto-manages dependency graph and supplier registry merging
Installation
Copy the library file (supply_demand.py) to your project.
Quick Start
from supply_demand import supply_demand
import asyncio
async def value_supplier(data, scope):
return 42
async def root_supplier(data, scope):
answer = await scope.demand({"type": "value"})
print("Supply chain returned:", answer)
suppliers = {"value": value_supplier}
asyncio.run(supply_demand(root_supplier, suppliers))
Example: Dependency Chain
async def A(data, scope):
return 1
async def B(data, scope):
a_val = await scope.demand({"type": "A"})
return a_val + 5
async def root(data, scope):
result = await scope.demand({"type": "B"})
print("Result:", result)
suppliers = {"A": A, "B": B}
asyncio.run(supply_demand(root, suppliers))
Output: Result: 6
API
supply_demand(root_supplier, suppliers)
- root_supplier: Callable
(data, scope). The entry point. - suppliers: Dict of
{type: supplier_func, ...}.
context.demand(props)
- props["type"] — The supplier type to demand.
- Can override suppliers, pass data, etc.
Advanced
Supports registry extension, override, additive/clear logic via:
scope.demand({
"type": "X",
"suppliers": {"add": {"X": custom_x_supplier}}
})
License
MIT
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 supply_demand-0.0.13.tar.gz.
File metadata
- Download URL: supply_demand-0.0.13.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f8837a3f14ab31675a25ed62fb82cf46722411cfcef19e9d8a6d133493e3a8c
|
|
| MD5 |
b95ad37860037c436eba121e0bf9e1c4
|
|
| BLAKE2b-256 |
130ef07b699cc8953b151859838d7b7e939d659712246298aebad7379d269e34
|
File details
Details for the file supply_demand-0.0.13-py3-none-any.whl.
File metadata
- Download URL: supply_demand-0.0.13-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a356bc32582ad3cf50e94f54627557d9ad3fdfe66390604fe3a9e93ad0884bb
|
|
| MD5 |
4e061218d924de130d0027015fdb95b4
|
|
| BLAKE2b-256 |
5fc2d75788f4beaa2b1cc5d5b7ab0846fbd95a460cb80d6f56771d8021a9d226
|