Skip to main content

Simple Python ORM/ODM specifically designed to be used with Pydantic and FastAPI

Project description

odim

Simple Python ORM/ODM specifically designed to be used with Pydantic and FastAPI

Simple syntax

In order to nicely work with databases you just create your Pydantic models. Odim does not care if it is MongoDB or SQL.

from pydantic import BaseModel

class MyModel(BaseModel):
    id : int
    field : str

    class Config:
        db_uri = "mongodb://user:pwd@10.0.0.1/db1"
        collection_name = "mymodel"

Then you can easily perform CRUD operations.

obj = MyModel(id=1, field="asdf 213")
await Odim(obj).save()

obj2 = await Odim(MyModel).get(123)

for x in await Odim(MyModel).find({"field" : "asdf 213"}):
  print(x)

await Odim(MyModel).count({"field" : 1})

In case you are using amazin FastAPI. We have our extended router, that gives you CRUD API endpoint

from odim.router import OdimRouter

router = OdimRouter()

router.mount_crud("/api/mymodel/", model=MyModel, tags=["mymodel"])

Or you can generate these API stubs with

router.generate("/api/mymodel/", model=MyModel, tags=["mymodel"])

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

odim-0.1.33.tar.gz (16.3 kB view hashes)

Uploaded Source

Built Distribution

odim-0.1.33-py3-none-any.whl (19.7 kB view hashes)

Uploaded Python 3

Supported by

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