Skip to main content

A FastAPI like dependency injector

Project description

python-depends

A FastAPI like dependecy injector

Install

# stable
pip3 install python-depends

# latest
pip3 install git+https://github.com/Dimfred/depends.git

Examples

from depends import Depends, inject

async def d1():
    # do some stuff, which takes long
    return "some stuff"

async def d2():
    # do some other stuff, which also takes long
    return "some other stuff"

# inject the dependency into a function
@inject
async def main(d1_=Depends(d1), d2_=Depends(d2)):
    print(d1_)  # some stuff
    print(d2_)  # some other stuff

Nested dependencies

from depends import Depends, inject

async def d1():
    # do some stuff, which takes long
    return "some stuff"

async def d2(d1_=Depends(d1)):
    # do some other stuff, which also takes long
    # you can work with d2_ here
    return "some other stuff"

# d1 was called only once and is cached during the whole call
@inject
async def main(d1_=Depends(d1), d2_=Depends(d2)):
    print(d1_)  # some stuff
    print(d2_)  # some other stuff

You can also use parameters in your injected function which will be forwarded to your dependencies. The detection is done by name, no type checking is applied here.

from depends import Depends, inject

async def d1(a):
    return a


# d1 was called only once and is cached during the whole call
@inject
async def main(a, d1_=Depends(d1)):
    return a, d1_

assert (await main(1)) == (1, 1)

Another cool thing is that you can use context managed objects inside an injected function. Like for example a database session.

from depends import Depends, inject

async def get_db():
    async with Session() as db:
        yield db

@inject
async def main(db=Depends(get_db)):
    # do stuff with your async db connection
    # after the exit the connection will be teared down

TODO

  • support sync dependencies (only async rn)
  • replace the caching mechanism with maybe the correct dependency tree

Project details


Download files

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

Source Distribution

python-depends-0.1.4.tar.gz (4.3 kB view details)

Uploaded Source

Built Distribution

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

python_depends-0.1.4-py3-none-any.whl (4.9 kB view details)

Uploaded Python 3

File details

Details for the file python-depends-0.1.4.tar.gz.

File metadata

  • Download URL: python-depends-0.1.4.tar.gz
  • Upload date:
  • Size: 4.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.12 CPython/3.10.7 Linux/5.19.10-arch1-1

File hashes

Hashes for python-depends-0.1.4.tar.gz
Algorithm Hash digest
SHA256 e9bd6b129083eb2b89ba74fc2dde0dcd5f753917600e3d94a7dd167450e54476
MD5 594129839a7987752720e91df30f7a19
BLAKE2b-256 14d8b2ddceb9c68b077d91d88dc4a18614307f53bc0288ac24260f444b67e678

See more details on using hashes here.

File details

Details for the file python_depends-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: python_depends-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 4.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.12 CPython/3.10.7 Linux/5.19.10-arch1-1

File hashes

Hashes for python_depends-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 ad5861b17811da93da0774f88f36c627fc33fc1907eb8994be62569d4e8530eb
MD5 8adcb00c728a3e8c1acc1962a92e6ca3
BLAKE2b-256 5c450ce069e2fedad9cdb6bdc5936c55865fdce0090358a1a787c8028e99f498

See more details on using hashes here.

Supported by

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