ormar


Nameormar JSON
Version 0.20.0 PyPI version JSON
download
home_pagehttps://github.com/collerek/ormar
SummaryAn async ORM with fastapi in mind and pydantic validation.
upload_time2024-03-16 19:55:49
maintainer
docs_urlNone
authorRadosław Drążkiewicz
requires_python>=3.8.0,<4.0.0
licenseMIT
keywords orm sqlalchemy fastapi pydantic databases async alembic
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # ormar
<p>
<a href="https://pypi.org/project/ormar">
    <img src="https://img.shields.io/pypi/v/ormar.svg" alt="Pypi version">
</a>
<a href="https://pypi.org/project/ormar">
    <img src="https://img.shields.io/pypi/pyversions/ormar.svg" alt="Pypi version">
</a>
<img src="https://github.com/collerek/ormar/workflows/build/badge.svg" alt="Build Status">
<a href="https://codecov.io/gh/collerek/ormar">
    <img src="https://codecov.io/gh/collerek/ormar/branch/master/graph/badge.svg" alt="Coverage">
</a>
<a href="https://www.codefactor.io/repository/github/collerek/ormar">
<img src="https://www.codefactor.io/repository/github/collerek/ormar/badge" alt="CodeFactor" />
</a>
<a href="https://codeclimate.com/github/collerek/ormar/maintainability">
<img src="https://api.codeclimate.com/v1/badges/186bc79245724864a7aa/maintainability" /></a>
<a href="https://pepy.tech/project/ormar">
<img src="https://pepy.tech/badge/ormar"></a>
</p>

### Overview

The `ormar` package is an async mini ORM for Python, with support for **Postgres,
MySQL**, and **SQLite**.

The main benefits of using `ormar` are:

*  getting an **async ORM that can be used with async frameworks** (fastapi, starlette etc.)
*  getting just **one model to maintain** - you don't have to maintain pydantic and other orm models (sqlalchemy, peewee, gino etc.)

The goal was to create a simple ORM that can be **used directly (as request and response models) with [`fastapi`][fastapi]** that bases it's data validation on pydantic.

Ormar - apart from the obvious "ORM" in name - gets its name from _ormar_ in Swedish which means _snakes_, and _ormar_ in Croatian which means _cabinet_.

And what's a better name for python ORM than snakes cabinet :)

**If you like ormar remember to star the repository in [github](https://github.com/collerek/ormar)!**

The bigger community we build, the easier it will be to catch bugs and attract contributors ;)

### Documentation

Check out the [documentation][documentation] for details.

**Note that for brevity most of the documentation snippets omit the creation of the database
and scheduling the execution of functions for asynchronous run.**

If you want more real life examples than in the documentation you can see the [tests][tests] folder,
since they actually have to create and connect to a database in most of the tests.

Yet remember that those are - well - tests and not all solutions are suitable to be used in real life applications.

### Part of the `fastapi` ecosystem

As part of the fastapi ecosystem `ormar` is supported in libraries that somehow work with databases.

As of now `ormar` is supported by:

*  [`fastapi-crudrouter`](https://github.com/awtkns/fastapi-crudrouter)
*  [`fastapi-pagination`](https://github.com/uriyyo/fastapi-pagination)

If you maintain or use a different library and would like it to support `ormar` let us know how we can help.

### Dependencies

Ormar is built with:

* [`sqlalchemy core`][sqlalchemy-core] for query building.
* [`databases`][databases] for cross-database async support.
* [`pydantic`][pydantic] for data validation.
* `typing_extensions` for python 3.6 - 3.7

### License

`ormar` is built as open-sorce software and will remain completely free (MIT license).

As I write open-source code to solve everyday problems in my work or to promote and build strong python
community you can say thank you and buy me a coffee or sponsor me with a monthly amount to help ensure my work remains free and maintained.

<a aria-label="Sponsor collerek" href="https://github.com/sponsors/collerek" style="text-decoration: none; color: #c9d1d9 !important;">
<div style="
    background-color: #21262d;
    border-color: #30363d;
    box-shadow:  0 0 transparent, 0 0 transparent;
    color: #c9d1d9 !important;
    border: 1px solid;
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    padding: 10px;
    line-height: 0px;
    height: 40px;
">
<span style="color: #c9d1d9 !important;">Sponsor - Github Sponsors</span>
</div>
</a>

### Migrating from `sqlalchemy` and existing databases

If you currently use `sqlalchemy` and would like to switch to `ormar` check out the auto-translation
tool that can help you with translating existing sqlalchemy orm models so you do not have to do it manually.

**Beta** versions available at github: [`sqlalchemy-to-ormar`](https://github.com/collerek/sqlalchemy-to-ormar)
or simply `pip install sqlalchemy-to-ormar`

`sqlalchemy-to-ormar` can be used in pair with `sqlacodegen` to auto-map/ generate `ormar` models from existing database, even if you don't use `sqlalchemy` for your project.

### Migrations & Database creation

Because ormar is built on SQLAlchemy core, you can use [`alembic`][alembic] to provide
database migrations (and you really should for production code).

For tests and basic applications the `sqlalchemy` is more than enough:
```python
# note this is just a partial snippet full working example below
# 1. Imports
import sqlalchemy
import databases

# 2. Initialization
DATABASE_URL = "sqlite:///db.sqlite"
database = databases.Database(DATABASE_URL)
metadata = sqlalchemy.MetaData()

# Define models here

# 3. Database creation and tables creation
engine = sqlalchemy.create_engine(DATABASE_URL)
metadata.create_all(engine)
```

For a sample configuration of alembic and more information regarding migrations and
database creation visit [migrations][migrations] documentation section.

### Package versions
**ormar is still under development:**
We recommend pinning any dependencies (with i.e. `ormar~=0.9.1`)

`ormar` also follows the release numeration that breaking changes bump the major number,
while other changes and fixes bump minor number, so with the latter you should be safe to
update, yet always read the [releases][releases] docs before.
`example: (0.5.2 -> 0.6.0 - breaking, 0.5.2 -> 0.5.3 - non breaking)`.

### Asynchronous Python

Note that `ormar` is an asynchronous ORM, which means that you have to `await` the calls to
the methods, that are scheduled for execution in an event loop. Python has a builtin module
[`asyncio`][asyncio] that allows you to do just that.

Note that most "normal" python interpreters do not allow execution of `await`
outside of a function (because you actually schedule this function for delayed execution
and don't get the result immediately).

In a modern web framework (like `fastapi`), the framework will handle this for you, but if
you plan to do this on your own you need to perform this manually like described in the
quick start below.

### Quick Start

Note that you can find the same script in examples folder on github.

```python
from typing import Optional

import databases
import pydantic

import ormar
import sqlalchemy

DATABASE_URL = "sqlite:///db.sqlite"
base_ormar_config = ormar.OrmarConfig(
    database=databases.Database(DATABASE_URL),
    metadata=sqlalchemy.MetaData(),
    engine=sqlalchemy.create_engine(DATABASE_URL),
)


# Note that all type hints are optional
# below is a perfectly valid model declaration
# class Author(ormar.Model):
#     ormar_config = base_ormar_config.copy(tablename="authors")
#
#     id = ormar.Integer(primary_key=True) # <= notice no field types
#     name = ormar.String(max_length=100)


class Author(ormar.Model):
    ormar_config = base_ormar_config.copy(tablename="authors")

    id: int = ormar.Integer(primary_key=True)
    name: str = ormar.String(max_length=100)


class Book(ormar.Model):
    ormar_config = base_ormar_config.copy(tablename="books")

    id: int = ormar.Integer(primary_key=True)
    author: Optional[Author] = ormar.ForeignKey(Author)
    title: str = ormar.String(max_length=100)
    year: int = ormar.Integer(nullable=True)


# create the database
# note that in production you should use migrations
# note that this is not required if you connect to existing database
# just to be sure we clear the db before
base_ormar_config.metadata.drop_all(base_ormar_config.engine)
base_ormar_config.metadata.create_all(base_ormar_config.engine)


# all functions below are divided into functionality categories
# note how all functions are defined with async - hence can use await AND needs to
# be awaited on their own
async def create():
    # Create some records to work with through QuerySet.create method.
    # Note that queryset is exposed on each Model's class as objects
    tolkien = await Author.objects.create(name="J.R.R. Tolkien")
    await Book.objects.create(author=tolkien, title="The Hobbit", year=1937)
    await Book.objects.create(author=tolkien, title="The Lord of the Rings", year=1955)
    await Book.objects.create(author=tolkien, title="The Silmarillion", year=1977)

    # alternative creation of object divided into 2 steps
    sapkowski = Author(name="Andrzej Sapkowski")
    # do some stuff
    await sapkowski.save()

    # or save() after initialization
    await Book(author=sapkowski, title="The Witcher", year=1990).save()
    await Book(author=sapkowski, title="The Tower of Fools", year=2002).save()

    # to read more about inserting data into the database
    # visit: https://collerek.github.io/ormar/queries/create/


async def read():
    # Fetch an instance, without loading a foreign key relationship on it.
    # Django style
    book = await Book.objects.get(title="The Hobbit")
    # or python style
    book = await Book.objects.get(Book.title == "The Hobbit")
    book2 = await Book.objects.first()

    # first() fetch the instance with lower primary key value
    assert book == book2

    # you can access all fields on loaded model
    assert book.title == "The Hobbit"
    assert book.year == 1937

    # when no condition is passed to get()
    # it behaves as last() based on primary key column
    book3 = await Book.objects.get()
    assert book3.title == "The Tower of Fools"

    # When you have a relation, ormar always defines a related model for you
    # even when all you loaded is a foreign key value like in this example
    assert isinstance(book.author, Author)
    # primary key is populated from foreign key stored in books table
    assert book.author.pk == 1
    # since the related model was not loaded all other fields are None
    assert book.author.name is None

    # Load the relationship from the database when you already have the related model
    # alternatively see joins section below
    await book.author.load()
    assert book.author.name == "J.R.R. Tolkien"

    # get all rows for given model
    authors = await Author.objects.all()
    assert len(authors) == 2

    # to read more about reading data from the database
    # visit: https://collerek.github.io/ormar/queries/read/


async def update():
    # read existing row from db
    tolkien = await Author.objects.get(name="J.R.R. Tolkien")
    assert tolkien.name == "J.R.R. Tolkien"
    tolkien_id = tolkien.id

    # change the selected property
    tolkien.name = "John Ronald Reuel Tolkien"
    # call update on a model instance
    await tolkien.update()

    # confirm that object was updated
    tolkien = await Author.objects.get(name="John Ronald Reuel Tolkien")
    assert tolkien.name == "John Ronald Reuel Tolkien"
    assert tolkien.id == tolkien_id

    # alternatively update data without loading
    await Author.objects.filter(name__contains="Tolkien").update(name="J.R.R. Tolkien")

    # to read more about updating data in the database
    # visit: https://collerek.github.io/ormar/queries/update/


async def delete():
    silmarillion = await Book.objects.get(year=1977)
    # call delete() on instance
    await silmarillion.delete()

    # alternatively delete without loading
    await Book.objects.delete(title="The Tower of Fools")

    # note that when there is no record ormar raises NoMatch exception
    try:
        await Book.objects.get(year=1977)
    except ormar.NoMatch:
        print("No book from 1977!")

    # to read more about deleting data from the database
    # visit: https://collerek.github.io/ormar/queries/delete/

    # note that despite the fact that record no longer exists in database
    # the object above is still accessible and you can use it (and i.e. save()) again.
    tolkien = silmarillion.author
    await Book.objects.create(author=tolkien, title="The Silmarillion", year=1977)


async def joins():
    # Tho join two models use select_related

    # Django style
    book = await Book.objects.select_related("author").get(title="The Hobbit")
    # Python style
    book = await Book.objects.select_related(Book.author).get(
        Book.title == "The Hobbit"
    )

    # now the author is already prefetched
    assert book.author.name == "J.R.R. Tolkien"

    # By default you also get a second side of the relation
    # constructed as lowercase source model name +'s' (books in this case)
    # you can also provide custom name with parameter related_name

    # Django style
    author = await Author.objects.select_related("books").all(name="J.R.R. Tolkien")
    # Python style
    author = await Author.objects.select_related(Author.books).all(
        Author.name == "J.R.R. Tolkien"
    )
    assert len(author[0].books) == 3

    # for reverse and many to many relations you can also prefetch_related
    # that executes a separate query for each of related models

    # Django style
    author = await Author.objects.prefetch_related("books").get(name="J.R.R. Tolkien")
    # Python style
    author = await Author.objects.prefetch_related(Author.books).get(
        Author.name == "J.R.R. Tolkien"
    )
    assert len(author.books) == 3

    # to read more about relations
    # visit: https://collerek.github.io/ormar/relations/

    # to read more about joins and subqueries
    # visit: https://collerek.github.io/ormar/queries/joins-and-subqueries/


async def filter_and_sort():
    # to filter the query you can use filter() or pass key-value pars to
    # get(), all() etc.
    # to use special methods or access related model fields use double
    # underscore like to filter by the name of the author use author__name
    # Django style
    books = await Book.objects.all(author__name="J.R.R. Tolkien")
    # python style
    books = await Book.objects.all(Book.author.name == "J.R.R. Tolkien")
    assert len(books) == 3

    # filter can accept special methods also separated with double underscore
    # to issue sql query ` where authors.name like "%tolkien%"` that is not
    # case sensitive (hence small t in Tolkien)
    # Django style
    books = await Book.objects.filter(author__name__icontains="tolkien").all()
    # python style
    books = await Book.objects.filter(Book.author.name.icontains("tolkien")).all()
    assert len(books) == 3

    # to sort use order_by() function of queryset
    # to sort decreasing use hyphen before the field name
    # same as with filter you can use double underscores to access related fields
    # Django style
    books = (
        await Book.objects.filter(author__name__icontains="tolkien")
        .order_by("-year")
        .all()
    )
    # python style
    books = (
        await Book.objects.filter(Book.author.name.icontains("tolkien"))
        .order_by(Book.year.desc())
        .all()
    )
    assert len(books) == 3
    assert books[0].title == "The Silmarillion"
    assert books[2].title == "The Hobbit"

    # to read more about filtering and ordering
    # visit: https://collerek.github.io/ormar/queries/filter-and-sort/


async def subset_of_columns():
    # to exclude some columns from loading when querying the database
    # you can use fields() method
    hobbit = await Book.objects.fields(["title"]).get(title="The Hobbit")
    # note that fields not included in fields are empty (set to None)
    assert hobbit.year is None
    assert hobbit.author is None

    # selected field is there
    assert hobbit.title == "The Hobbit"

    # alternatively you can provide columns you want to exclude
    hobbit = await Book.objects.exclude_fields(["year"]).get(title="The Hobbit")
    # year is still not set
    assert hobbit.year is None
    # but author is back
    assert hobbit.author is not None

    # also you cannot exclude primary key column - it's always there
    # even if you EXPLICITLY exclude it it will be there

    # note that each model have a shortcut for primary_key column which is pk
    # and you can filter/access/set the values by this alias like below
    assert hobbit.pk is not None

    # note that you cannot exclude fields that are not nullable
    # (required) in model definition
    try:
        await Book.objects.exclude_fields(["title"]).get(title="The Hobbit")
    except pydantic.ValidationError:
        print("Cannot exclude non nullable field title")

    # to read more about selecting subset of columns
    # visit: https://collerek.github.io/ormar/queries/select-columns/


async def pagination():
    # to limit number of returned rows use limit()
    books = await Book.objects.limit(1).all()
    assert len(books) == 1
    assert books[0].title == "The Hobbit"

    # to offset number of returned rows use offset()
    books = await Book.objects.limit(1).offset(1).all()
    assert len(books) == 1
    assert books[0].title == "The Lord of the Rings"

    # alternatively use paginate that combines both
    books = await Book.objects.paginate(page=2, page_size=2).all()
    assert len(books) == 2
    # note that we removed one book of Sapkowski in delete()
    # and recreated The Silmarillion - by default when no order_by is set
    # ordering sorts by primary_key column
    assert books[0].title == "The Witcher"
    assert books[1].title == "The Silmarillion"

    # to read more about pagination and number of rows
    # visit: https://collerek.github.io/ormar/queries/pagination-and-rows-number/


async def aggregations():
    # count:
    assert 2 == await Author.objects.count()

    # exists
    assert await Book.objects.filter(title="The Hobbit").exists()

    # maximum
    assert 1990 == await Book.objects.max(columns=["year"])

    # minimum
    assert 1937 == await Book.objects.min(columns=["year"])

    # average
    assert 1964.75 == await Book.objects.avg(columns=["year"])

    # sum
    assert 7859 == await Book.objects.sum(columns=["year"])

    # to read more about aggregated functions
    # visit: https://collerek.github.io/ormar/queries/aggregations/


async def raw_data():
    # extract raw data in a form of dicts or tuples
    # note that this skips the validation(!) as models are
    # not created from parsed data

    # get list of objects as dicts
    assert await Book.objects.values() == [
        {"id": 1, "author": 1, "title": "The Hobbit", "year": 1937},
        {"id": 2, "author": 1, "title": "The Lord of the Rings", "year": 1955},
        {"id": 4, "author": 2, "title": "The Witcher", "year": 1990},
        {"id": 5, "author": 1, "title": "The Silmarillion", "year": 1977},
    ]

    # get list of objects as tuples
    assert await Book.objects.values_list() == [
        (1, 1, "The Hobbit", 1937),
        (2, 1, "The Lord of the Rings", 1955),
        (4, 2, "The Witcher", 1990),
        (5, 1, "The Silmarillion", 1977),
    ]

    # filter data - note how you always get a list
    assert await Book.objects.filter(title="The Hobbit").values() == [
        {"id": 1, "author": 1, "title": "The Hobbit", "year": 1937}
    ]

    # select only wanted fields
    assert await Book.objects.filter(title="The Hobbit").values(["id", "title"]) == [
        {"id": 1, "title": "The Hobbit"}
    ]

    # if you select only one column you could flatten it with values_list
    assert await Book.objects.values_list("title", flatten=True) == [
        "The Hobbit",
        "The Lord of the Rings",
        "The Witcher",
        "The Silmarillion",
    ]

    # to read more about extracting raw values
    # visit: https://collerek.github.io/ormar/queries/aggregations/


async def with_connect(function):
    # note that for any other backend than sqlite you actually need to
    # connect to the database to perform db operations
    async with base_ormar_config.database:
        await function()

    # note that if you use framework like `fastapi` you shouldn't connect
    # in your endpoints but have a global connection pool
    # check https://collerek.github.io/ormar/fastapi/ and section with db connection


# gather and execute all functions
# note - normally import should be at the beginning of the file
import asyncio

# note that normally you use gather() function to run several functions
# concurrently but we actually modify the data and we rely on the order of functions
for func in [
    create,
    read,
    update,
    delete,
    joins,
    filter_and_sort,
    subset_of_columns,
    pagination,
    aggregations,
    raw_data,
]:
    print(f"Executing: {func.__name__}")
    asyncio.run(with_connect(func))

# drop the database tables
base_ormar_config.metadata.drop_all(base_ormar_config.engine)
```

## Ormar Specification

### QuerySet methods

*  `create(**kwargs): -> Model`
*  `get(*args, **kwargs): -> Model`
*  `get_or_none(*args, **kwargs): -> Optional[Model]`
*  `get_or_create(_defaults: Optional[Dict[str, Any]] = None, *args, **kwargs) -> Tuple[Model, bool]`
*  `first(*args, **kwargs): -> Model`
*  `update(each: bool = False, **kwargs) -> int`
*  `update_or_create(**kwargs) -> Model`
*  `bulk_create(objects: List[Model]) -> None`
*  `bulk_update(objects: List[Model], columns: List[str] = None) -> None`
*  `delete(*args, each: bool = False, **kwargs) -> int`
*  `all(*args, **kwargs) -> List[Optional[Model]]`
*  `iterate(*args, **kwargs) -> AsyncGenerator[Model]`
*  `filter(*args, **kwargs) -> QuerySet`
*  `exclude(*args, **kwargs) -> QuerySet`
*  `select_related(related: Union[List, str]) -> QuerySet`
*  `prefetch_related(related: Union[List, str]) -> QuerySet`
*  `limit(limit_count: int) -> QuerySet`
*  `offset(offset: int) -> QuerySet`
*  `count(distinct: bool = True) -> int`
*  `exists() -> bool`
*  `max(columns: List[str]) -> Any`
*  `min(columns: List[str]) -> Any`
*  `avg(columns: List[str]) -> Any`
*  `sum(columns: List[str]) -> Any`
*  `fields(columns: Union[List, str, set, dict]) -> QuerySet`
*  `exclude_fields(columns: Union[List, str, set, dict]) -> QuerySet`
*  `order_by(columns:Union[List, str]) -> QuerySet`
*  `values(fields: Union[List, str, Set, Dict])`
*  `values_list(fields: Union[List, str, Set, Dict])`


#### Relation types

*  One to many  - with `ForeignKey(to: Model)`
*  Many to many - with `ManyToMany(to: Model, Optional[through]: Model)`

#### Model fields types

Available Model Fields (with required args - optional ones in docs):

* `String(max_length)`
* `Text()`
* `Boolean()`
* `Integer()`
* `Float()`
* `Date()`
* `Time()`
* `DateTime()`
* `JSON()`
* `BigInteger()`
* `SmallInteger()`
* `Decimal(scale, precision)`
* `UUID()`
* `LargeBinary(max_length)`
* `Enum(enum_class)`
* `Enum` like Field - by passing `choices` to any other Field type
* `EncryptedString` - by passing `encrypt_secret` and `encrypt_backend`
* `ForeignKey(to)`
* `ManyToMany(to)`

### Available fields options
The following keyword arguments are supported on all field types.

* `primary_key: bool`
* `nullable: bool`
* `default: Any`
* `server_default: Any`
* `index: bool`
* `unique: bool`
* `choices: typing.Sequence`
* `name: str`

All fields are required unless one of the following is set:

* `nullable` - Creates a nullable column. Sets the default to `False`. Read the fields common parameters for details.
* `sql_nullable` - Used to set different setting for pydantic and the database. Sets the default to `nullable` value. Read the fields common parameters for details.
* `default` - Set a default value for the field. **Not available for relation fields**
* `server_default` - Set a default value for the field on server side (like sqlalchemy's `func.now()`). **Not available for relation fields**
* `primary key` with `autoincrement` - When a column is set to primary key and autoincrement is set on this column.
  Autoincrement is set by default on int primary keys.

### Available signals

Signals allow to trigger your function for a given event on a given Model.

* `pre_save`
* `post_save`
* `pre_update`
* `post_update`
* `pre_delete`
* `post_delete`
* `pre_relation_add`
* `post_relation_add`
* `pre_relation_remove`
* `post_relation_remove`
* `post_bulk_update`


[sqlalchemy-core]: https://docs.sqlalchemy.org/en/latest/core/
[databases]: https://github.com/encode/databases
[pydantic]: https://pydantic-docs.helpmanual.io/
[encode/orm]: https://github.com/encode/orm/
[alembic]: https://alembic.sqlalchemy.org/en/latest/
[fastapi]: https://fastapi.tiangolo.com/
[documentation]: https://collerek.github.io/ormar/
[migrations]: https://collerek.github.io/ormar/models/migrations/
[asyncio]: https://docs.python.org/3/library/asyncio.html
[releases]: https://collerek.github.io/ormar/releases/
[tests]: https://github.com/collerek/ormar/tree/master/tests

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/collerek/ormar",
    "name": "ormar",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8.0,<4.0.0",
    "maintainer_email": "",
    "keywords": "orm,sqlalchemy,fastapi,pydantic,databases,async,alembic",
    "author": "Rados\u0142aw Dr\u0105\u017ckiewicz",
    "author_email": "collerek@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/e1/c9/78762090afb169a868a049b0df69b56641aa90b34769d62b406db4672faf/ormar-0.20.0.tar.gz",
    "platform": null,
    "description": "# ormar\n<p>\n<a href=\"https://pypi.org/project/ormar\">\n    <img src=\"https://img.shields.io/pypi/v/ormar.svg\" alt=\"Pypi version\">\n</a>\n<a href=\"https://pypi.org/project/ormar\">\n    <img src=\"https://img.shields.io/pypi/pyversions/ormar.svg\" alt=\"Pypi version\">\n</a>\n<img src=\"https://github.com/collerek/ormar/workflows/build/badge.svg\" alt=\"Build Status\">\n<a href=\"https://codecov.io/gh/collerek/ormar\">\n    <img src=\"https://codecov.io/gh/collerek/ormar/branch/master/graph/badge.svg\" alt=\"Coverage\">\n</a>\n<a href=\"https://www.codefactor.io/repository/github/collerek/ormar\">\n<img src=\"https://www.codefactor.io/repository/github/collerek/ormar/badge\" alt=\"CodeFactor\" />\n</a>\n<a href=\"https://codeclimate.com/github/collerek/ormar/maintainability\">\n<img src=\"https://api.codeclimate.com/v1/badges/186bc79245724864a7aa/maintainability\" /></a>\n<a href=\"https://pepy.tech/project/ormar\">\n<img src=\"https://pepy.tech/badge/ormar\"></a>\n</p>\n\n### Overview\n\nThe `ormar` package is an async mini ORM for Python, with support for **Postgres,\nMySQL**, and **SQLite**.\n\nThe main benefits of using `ormar` are:\n\n*  getting an **async ORM that can be used with async frameworks** (fastapi, starlette etc.)\n*  getting just **one model to maintain** - you don't have to maintain pydantic and other orm models (sqlalchemy, peewee, gino etc.)\n\nThe goal was to create a simple ORM that can be **used directly (as request and response models) with [`fastapi`][fastapi]** that bases it's data validation on pydantic.\n\nOrmar - apart from the obvious \"ORM\" in name - gets its name from _ormar_ in Swedish which means _snakes_, and _ormar_ in Croatian which means _cabinet_.\n\nAnd what's a better name for python ORM than snakes cabinet :)\n\n**If you like ormar remember to star the repository in [github](https://github.com/collerek/ormar)!**\n\nThe bigger community we build, the easier it will be to catch bugs and attract contributors ;)\n\n### Documentation\n\nCheck out the [documentation][documentation] for details.\n\n**Note that for brevity most of the documentation snippets omit the creation of the database\nand scheduling the execution of functions for asynchronous run.**\n\nIf you want more real life examples than in the documentation you can see the [tests][tests] folder,\nsince they actually have to create and connect to a database in most of the tests.\n\nYet remember that those are - well - tests and not all solutions are suitable to be used in real life applications.\n\n### Part of the `fastapi` ecosystem\n\nAs part of the fastapi ecosystem `ormar` is supported in libraries that somehow work with databases.\n\nAs of now `ormar` is supported by:\n\n*  [`fastapi-crudrouter`](https://github.com/awtkns/fastapi-crudrouter)\n*  [`fastapi-pagination`](https://github.com/uriyyo/fastapi-pagination)\n\nIf you maintain or use a different library and would like it to support `ormar` let us know how we can help.\n\n### Dependencies\n\nOrmar is built with:\n\n* [`sqlalchemy core`][sqlalchemy-core] for query building.\n* [`databases`][databases] for cross-database async support.\n* [`pydantic`][pydantic] for data validation.\n* `typing_extensions` for python 3.6 - 3.7\n\n### License\n\n`ormar` is built as open-sorce software and will remain completely free (MIT license).\n\nAs I write open-source code to solve everyday problems in my work or to promote and build strong python\ncommunity you can say thank you and buy me a coffee or sponsor me with a monthly amount to help ensure my work remains free and maintained.\n\n<a aria-label=\"Sponsor collerek\" href=\"https://github.com/sponsors/collerek\" style=\"text-decoration: none; color: #c9d1d9 !important;\">\n<div style=\"\n    background-color: #21262d;\n    border-color: #30363d;\n    box-shadow:  0 0 transparent, 0 0 transparent;\n    color: #c9d1d9 !important;\n    border: 1px solid;\n    border-radius: 6px;\n    cursor: pointer;\n    display: inline-block;\n    font-size: 14px;\n    padding: 10px;\n    line-height: 0px;\n    height: 40px;\n\">\n<span style=\"color: #c9d1d9 !important;\">Sponsor - Github Sponsors</span>\n</div>\n</a>\n\n### Migrating from `sqlalchemy` and existing databases\n\nIf you currently use `sqlalchemy` and would like to switch to `ormar` check out the auto-translation\ntool that can help you with translating existing sqlalchemy orm models so you do not have to do it manually.\n\n**Beta** versions available at github: [`sqlalchemy-to-ormar`](https://github.com/collerek/sqlalchemy-to-ormar)\nor simply `pip install sqlalchemy-to-ormar`\n\n`sqlalchemy-to-ormar` can be used in pair with `sqlacodegen` to auto-map/ generate `ormar` models from existing database, even if you don't use `sqlalchemy` for your project.\n\n### Migrations & Database creation\n\nBecause ormar is built on SQLAlchemy core, you can use [`alembic`][alembic] to provide\ndatabase migrations (and you really should for production code).\n\nFor tests and basic applications the `sqlalchemy` is more than enough:\n```python\n# note this is just a partial snippet full working example below\n# 1. Imports\nimport sqlalchemy\nimport databases\n\n# 2. Initialization\nDATABASE_URL = \"sqlite:///db.sqlite\"\ndatabase = databases.Database(DATABASE_URL)\nmetadata = sqlalchemy.MetaData()\n\n# Define models here\n\n# 3. Database creation and tables creation\nengine = sqlalchemy.create_engine(DATABASE_URL)\nmetadata.create_all(engine)\n```\n\nFor a sample configuration of alembic and more information regarding migrations and\ndatabase creation visit [migrations][migrations] documentation section.\n\n### Package versions\n**ormar is still under development:**\nWe recommend pinning any dependencies (with i.e. `ormar~=0.9.1`)\n\n`ormar` also follows the release numeration that breaking changes bump the major number,\nwhile other changes and fixes bump minor number, so with the latter you should be safe to\nupdate, yet always read the [releases][releases] docs before.\n`example: (0.5.2 -> 0.6.0 - breaking, 0.5.2 -> 0.5.3 - non breaking)`.\n\n### Asynchronous Python\n\nNote that `ormar` is an asynchronous ORM, which means that you have to `await` the calls to\nthe methods, that are scheduled for execution in an event loop. Python has a builtin module\n[`asyncio`][asyncio] that allows you to do just that.\n\nNote that most \"normal\" python interpreters do not allow execution of `await`\noutside of a function (because you actually schedule this function for delayed execution\nand don't get the result immediately).\n\nIn a modern web framework (like `fastapi`), the framework will handle this for you, but if\nyou plan to do this on your own you need to perform this manually like described in the\nquick start below.\n\n### Quick Start\n\nNote that you can find the same script in examples folder on github.\n\n```python\nfrom typing import Optional\n\nimport databases\nimport pydantic\n\nimport ormar\nimport sqlalchemy\n\nDATABASE_URL = \"sqlite:///db.sqlite\"\nbase_ormar_config = ormar.OrmarConfig(\n    database=databases.Database(DATABASE_URL),\n    metadata=sqlalchemy.MetaData(),\n    engine=sqlalchemy.create_engine(DATABASE_URL),\n)\n\n\n# Note that all type hints are optional\n# below is a perfectly valid model declaration\n# class Author(ormar.Model):\n#     ormar_config = base_ormar_config.copy(tablename=\"authors\")\n#\n#     id = ormar.Integer(primary_key=True) # <= notice no field types\n#     name = ormar.String(max_length=100)\n\n\nclass Author(ormar.Model):\n    ormar_config = base_ormar_config.copy(tablename=\"authors\")\n\n    id: int = ormar.Integer(primary_key=True)\n    name: str = ormar.String(max_length=100)\n\n\nclass Book(ormar.Model):\n    ormar_config = base_ormar_config.copy(tablename=\"books\")\n\n    id: int = ormar.Integer(primary_key=True)\n    author: Optional[Author] = ormar.ForeignKey(Author)\n    title: str = ormar.String(max_length=100)\n    year: int = ormar.Integer(nullable=True)\n\n\n# create the database\n# note that in production you should use migrations\n# note that this is not required if you connect to existing database\n# just to be sure we clear the db before\nbase_ormar_config.metadata.drop_all(base_ormar_config.engine)\nbase_ormar_config.metadata.create_all(base_ormar_config.engine)\n\n\n# all functions below are divided into functionality categories\n# note how all functions are defined with async - hence can use await AND needs to\n# be awaited on their own\nasync def create():\n    # Create some records to work with through QuerySet.create method.\n    # Note that queryset is exposed on each Model's class as objects\n    tolkien = await Author.objects.create(name=\"J.R.R. Tolkien\")\n    await Book.objects.create(author=tolkien, title=\"The Hobbit\", year=1937)\n    await Book.objects.create(author=tolkien, title=\"The Lord of the Rings\", year=1955)\n    await Book.objects.create(author=tolkien, title=\"The Silmarillion\", year=1977)\n\n    # alternative creation of object divided into 2 steps\n    sapkowski = Author(name=\"Andrzej Sapkowski\")\n    # do some stuff\n    await sapkowski.save()\n\n    # or save() after initialization\n    await Book(author=sapkowski, title=\"The Witcher\", year=1990).save()\n    await Book(author=sapkowski, title=\"The Tower of Fools\", year=2002).save()\n\n    # to read more about inserting data into the database\n    # visit: https://collerek.github.io/ormar/queries/create/\n\n\nasync def read():\n    # Fetch an instance, without loading a foreign key relationship on it.\n    # Django style\n    book = await Book.objects.get(title=\"The Hobbit\")\n    # or python style\n    book = await Book.objects.get(Book.title == \"The Hobbit\")\n    book2 = await Book.objects.first()\n\n    # first() fetch the instance with lower primary key value\n    assert book == book2\n\n    # you can access all fields on loaded model\n    assert book.title == \"The Hobbit\"\n    assert book.year == 1937\n\n    # when no condition is passed to get()\n    # it behaves as last() based on primary key column\n    book3 = await Book.objects.get()\n    assert book3.title == \"The Tower of Fools\"\n\n    # When you have a relation, ormar always defines a related model for you\n    # even when all you loaded is a foreign key value like in this example\n    assert isinstance(book.author, Author)\n    # primary key is populated from foreign key stored in books table\n    assert book.author.pk == 1\n    # since the related model was not loaded all other fields are None\n    assert book.author.name is None\n\n    # Load the relationship from the database when you already have the related model\n    # alternatively see joins section below\n    await book.author.load()\n    assert book.author.name == \"J.R.R. Tolkien\"\n\n    # get all rows for given model\n    authors = await Author.objects.all()\n    assert len(authors) == 2\n\n    # to read more about reading data from the database\n    # visit: https://collerek.github.io/ormar/queries/read/\n\n\nasync def update():\n    # read existing row from db\n    tolkien = await Author.objects.get(name=\"J.R.R. Tolkien\")\n    assert tolkien.name == \"J.R.R. Tolkien\"\n    tolkien_id = tolkien.id\n\n    # change the selected property\n    tolkien.name = \"John Ronald Reuel Tolkien\"\n    # call update on a model instance\n    await tolkien.update()\n\n    # confirm that object was updated\n    tolkien = await Author.objects.get(name=\"John Ronald Reuel Tolkien\")\n    assert tolkien.name == \"John Ronald Reuel Tolkien\"\n    assert tolkien.id == tolkien_id\n\n    # alternatively update data without loading\n    await Author.objects.filter(name__contains=\"Tolkien\").update(name=\"J.R.R. Tolkien\")\n\n    # to read more about updating data in the database\n    # visit: https://collerek.github.io/ormar/queries/update/\n\n\nasync def delete():\n    silmarillion = await Book.objects.get(year=1977)\n    # call delete() on instance\n    await silmarillion.delete()\n\n    # alternatively delete without loading\n    await Book.objects.delete(title=\"The Tower of Fools\")\n\n    # note that when there is no record ormar raises NoMatch exception\n    try:\n        await Book.objects.get(year=1977)\n    except ormar.NoMatch:\n        print(\"No book from 1977!\")\n\n    # to read more about deleting data from the database\n    # visit: https://collerek.github.io/ormar/queries/delete/\n\n    # note that despite the fact that record no longer exists in database\n    # the object above is still accessible and you can use it (and i.e. save()) again.\n    tolkien = silmarillion.author\n    await Book.objects.create(author=tolkien, title=\"The Silmarillion\", year=1977)\n\n\nasync def joins():\n    # Tho join two models use select_related\n\n    # Django style\n    book = await Book.objects.select_related(\"author\").get(title=\"The Hobbit\")\n    # Python style\n    book = await Book.objects.select_related(Book.author).get(\n        Book.title == \"The Hobbit\"\n    )\n\n    # now the author is already prefetched\n    assert book.author.name == \"J.R.R. Tolkien\"\n\n    # By default you also get a second side of the relation\n    # constructed as lowercase source model name +'s' (books in this case)\n    # you can also provide custom name with parameter related_name\n\n    # Django style\n    author = await Author.objects.select_related(\"books\").all(name=\"J.R.R. Tolkien\")\n    # Python style\n    author = await Author.objects.select_related(Author.books).all(\n        Author.name == \"J.R.R. Tolkien\"\n    )\n    assert len(author[0].books) == 3\n\n    # for reverse and many to many relations you can also prefetch_related\n    # that executes a separate query for each of related models\n\n    # Django style\n    author = await Author.objects.prefetch_related(\"books\").get(name=\"J.R.R. Tolkien\")\n    # Python style\n    author = await Author.objects.prefetch_related(Author.books).get(\n        Author.name == \"J.R.R. Tolkien\"\n    )\n    assert len(author.books) == 3\n\n    # to read more about relations\n    # visit: https://collerek.github.io/ormar/relations/\n\n    # to read more about joins and subqueries\n    # visit: https://collerek.github.io/ormar/queries/joins-and-subqueries/\n\n\nasync def filter_and_sort():\n    # to filter the query you can use filter() or pass key-value pars to\n    # get(), all() etc.\n    # to use special methods or access related model fields use double\n    # underscore like to filter by the name of the author use author__name\n    # Django style\n    books = await Book.objects.all(author__name=\"J.R.R. Tolkien\")\n    # python style\n    books = await Book.objects.all(Book.author.name == \"J.R.R. Tolkien\")\n    assert len(books) == 3\n\n    # filter can accept special methods also separated with double underscore\n    # to issue sql query ` where authors.name like \"%tolkien%\"` that is not\n    # case sensitive (hence small t in Tolkien)\n    # Django style\n    books = await Book.objects.filter(author__name__icontains=\"tolkien\").all()\n    # python style\n    books = await Book.objects.filter(Book.author.name.icontains(\"tolkien\")).all()\n    assert len(books) == 3\n\n    # to sort use order_by() function of queryset\n    # to sort decreasing use hyphen before the field name\n    # same as with filter you can use double underscores to access related fields\n    # Django style\n    books = (\n        await Book.objects.filter(author__name__icontains=\"tolkien\")\n        .order_by(\"-year\")\n        .all()\n    )\n    # python style\n    books = (\n        await Book.objects.filter(Book.author.name.icontains(\"tolkien\"))\n        .order_by(Book.year.desc())\n        .all()\n    )\n    assert len(books) == 3\n    assert books[0].title == \"The Silmarillion\"\n    assert books[2].title == \"The Hobbit\"\n\n    # to read more about filtering and ordering\n    # visit: https://collerek.github.io/ormar/queries/filter-and-sort/\n\n\nasync def subset_of_columns():\n    # to exclude some columns from loading when querying the database\n    # you can use fields() method\n    hobbit = await Book.objects.fields([\"title\"]).get(title=\"The Hobbit\")\n    # note that fields not included in fields are empty (set to None)\n    assert hobbit.year is None\n    assert hobbit.author is None\n\n    # selected field is there\n    assert hobbit.title == \"The Hobbit\"\n\n    # alternatively you can provide columns you want to exclude\n    hobbit = await Book.objects.exclude_fields([\"year\"]).get(title=\"The Hobbit\")\n    # year is still not set\n    assert hobbit.year is None\n    # but author is back\n    assert hobbit.author is not None\n\n    # also you cannot exclude primary key column - it's always there\n    # even if you EXPLICITLY exclude it it will be there\n\n    # note that each model have a shortcut for primary_key column which is pk\n    # and you can filter/access/set the values by this alias like below\n    assert hobbit.pk is not None\n\n    # note that you cannot exclude fields that are not nullable\n    # (required) in model definition\n    try:\n        await Book.objects.exclude_fields([\"title\"]).get(title=\"The Hobbit\")\n    except pydantic.ValidationError:\n        print(\"Cannot exclude non nullable field title\")\n\n    # to read more about selecting subset of columns\n    # visit: https://collerek.github.io/ormar/queries/select-columns/\n\n\nasync def pagination():\n    # to limit number of returned rows use limit()\n    books = await Book.objects.limit(1).all()\n    assert len(books) == 1\n    assert books[0].title == \"The Hobbit\"\n\n    # to offset number of returned rows use offset()\n    books = await Book.objects.limit(1).offset(1).all()\n    assert len(books) == 1\n    assert books[0].title == \"The Lord of the Rings\"\n\n    # alternatively use paginate that combines both\n    books = await Book.objects.paginate(page=2, page_size=2).all()\n    assert len(books) == 2\n    # note that we removed one book of Sapkowski in delete()\n    # and recreated The Silmarillion - by default when no order_by is set\n    # ordering sorts by primary_key column\n    assert books[0].title == \"The Witcher\"\n    assert books[1].title == \"The Silmarillion\"\n\n    # to read more about pagination and number of rows\n    # visit: https://collerek.github.io/ormar/queries/pagination-and-rows-number/\n\n\nasync def aggregations():\n    # count:\n    assert 2 == await Author.objects.count()\n\n    # exists\n    assert await Book.objects.filter(title=\"The Hobbit\").exists()\n\n    # maximum\n    assert 1990 == await Book.objects.max(columns=[\"year\"])\n\n    # minimum\n    assert 1937 == await Book.objects.min(columns=[\"year\"])\n\n    # average\n    assert 1964.75 == await Book.objects.avg(columns=[\"year\"])\n\n    # sum\n    assert 7859 == await Book.objects.sum(columns=[\"year\"])\n\n    # to read more about aggregated functions\n    # visit: https://collerek.github.io/ormar/queries/aggregations/\n\n\nasync def raw_data():\n    # extract raw data in a form of dicts or tuples\n    # note that this skips the validation(!) as models are\n    # not created from parsed data\n\n    # get list of objects as dicts\n    assert await Book.objects.values() == [\n        {\"id\": 1, \"author\": 1, \"title\": \"The Hobbit\", \"year\": 1937},\n        {\"id\": 2, \"author\": 1, \"title\": \"The Lord of the Rings\", \"year\": 1955},\n        {\"id\": 4, \"author\": 2, \"title\": \"The Witcher\", \"year\": 1990},\n        {\"id\": 5, \"author\": 1, \"title\": \"The Silmarillion\", \"year\": 1977},\n    ]\n\n    # get list of objects as tuples\n    assert await Book.objects.values_list() == [\n        (1, 1, \"The Hobbit\", 1937),\n        (2, 1, \"The Lord of the Rings\", 1955),\n        (4, 2, \"The Witcher\", 1990),\n        (5, 1, \"The Silmarillion\", 1977),\n    ]\n\n    # filter data - note how you always get a list\n    assert await Book.objects.filter(title=\"The Hobbit\").values() == [\n        {\"id\": 1, \"author\": 1, \"title\": \"The Hobbit\", \"year\": 1937}\n    ]\n\n    # select only wanted fields\n    assert await Book.objects.filter(title=\"The Hobbit\").values([\"id\", \"title\"]) == [\n        {\"id\": 1, \"title\": \"The Hobbit\"}\n    ]\n\n    # if you select only one column you could flatten it with values_list\n    assert await Book.objects.values_list(\"title\", flatten=True) == [\n        \"The Hobbit\",\n        \"The Lord of the Rings\",\n        \"The Witcher\",\n        \"The Silmarillion\",\n    ]\n\n    # to read more about extracting raw values\n    # visit: https://collerek.github.io/ormar/queries/aggregations/\n\n\nasync def with_connect(function):\n    # note that for any other backend than sqlite you actually need to\n    # connect to the database to perform db operations\n    async with base_ormar_config.database:\n        await function()\n\n    # note that if you use framework like `fastapi` you shouldn't connect\n    # in your endpoints but have a global connection pool\n    # check https://collerek.github.io/ormar/fastapi/ and section with db connection\n\n\n# gather and execute all functions\n# note - normally import should be at the beginning of the file\nimport asyncio\n\n# note that normally you use gather() function to run several functions\n# concurrently but we actually modify the data and we rely on the order of functions\nfor func in [\n    create,\n    read,\n    update,\n    delete,\n    joins,\n    filter_and_sort,\n    subset_of_columns,\n    pagination,\n    aggregations,\n    raw_data,\n]:\n    print(f\"Executing: {func.__name__}\")\n    asyncio.run(with_connect(func))\n\n# drop the database tables\nbase_ormar_config.metadata.drop_all(base_ormar_config.engine)\n```\n\n## Ormar Specification\n\n### QuerySet methods\n\n*  `create(**kwargs): -> Model`\n*  `get(*args, **kwargs): -> Model`\n*  `get_or_none(*args, **kwargs): -> Optional[Model]`\n*  `get_or_create(_defaults: Optional[Dict[str, Any]] = None, *args, **kwargs) -> Tuple[Model, bool]`\n*  `first(*args, **kwargs): -> Model`\n*  `update(each: bool = False, **kwargs) -> int`\n*  `update_or_create(**kwargs) -> Model`\n*  `bulk_create(objects: List[Model]) -> None`\n*  `bulk_update(objects: List[Model], columns: List[str] = None) -> None`\n*  `delete(*args, each: bool = False, **kwargs) -> int`\n*  `all(*args, **kwargs) -> List[Optional[Model]]`\n*  `iterate(*args, **kwargs) -> AsyncGenerator[Model]`\n*  `filter(*args, **kwargs) -> QuerySet`\n*  `exclude(*args, **kwargs) -> QuerySet`\n*  `select_related(related: Union[List, str]) -> QuerySet`\n*  `prefetch_related(related: Union[List, str]) -> QuerySet`\n*  `limit(limit_count: int) -> QuerySet`\n*  `offset(offset: int) -> QuerySet`\n*  `count(distinct: bool = True) -> int`\n*  `exists() -> bool`\n*  `max(columns: List[str]) -> Any`\n*  `min(columns: List[str]) -> Any`\n*  `avg(columns: List[str]) -> Any`\n*  `sum(columns: List[str]) -> Any`\n*  `fields(columns: Union[List, str, set, dict]) -> QuerySet`\n*  `exclude_fields(columns: Union[List, str, set, dict]) -> QuerySet`\n*  `order_by(columns:Union[List, str]) -> QuerySet`\n*  `values(fields: Union[List, str, Set, Dict])`\n*  `values_list(fields: Union[List, str, Set, Dict])`\n\n\n#### Relation types\n\n*  One to many  - with `ForeignKey(to: Model)`\n*  Many to many - with `ManyToMany(to: Model, Optional[through]: Model)`\n\n#### Model fields types\n\nAvailable Model Fields (with required args - optional ones in docs):\n\n* `String(max_length)`\n* `Text()`\n* `Boolean()`\n* `Integer()`\n* `Float()`\n* `Date()`\n* `Time()`\n* `DateTime()`\n* `JSON()`\n* `BigInteger()`\n* `SmallInteger()`\n* `Decimal(scale, precision)`\n* `UUID()`\n* `LargeBinary(max_length)`\n* `Enum(enum_class)`\n* `Enum` like Field - by passing `choices` to any other Field type\n* `EncryptedString` - by passing `encrypt_secret` and `encrypt_backend`\n* `ForeignKey(to)`\n* `ManyToMany(to)`\n\n### Available fields options\nThe following keyword arguments are supported on all field types.\n\n* `primary_key: bool`\n* `nullable: bool`\n* `default: Any`\n* `server_default: Any`\n* `index: bool`\n* `unique: bool`\n* `choices: typing.Sequence`\n* `name: str`\n\nAll fields are required unless one of the following is set:\n\n* `nullable` - Creates a nullable column. Sets the default to `False`. Read the fields common parameters for details.\n* `sql_nullable` - Used to set different setting for pydantic and the database. Sets the default to `nullable` value. Read the fields common parameters for details.\n* `default` - Set a default value for the field. **Not available for relation fields**\n* `server_default` - Set a default value for the field on server side (like sqlalchemy's `func.now()`). **Not available for relation fields**\n* `primary key` with `autoincrement` - When a column is set to primary key and autoincrement is set on this column.\n  Autoincrement is set by default on int primary keys.\n\n### Available signals\n\nSignals allow to trigger your function for a given event on a given Model.\n\n* `pre_save`\n* `post_save`\n* `pre_update`\n* `post_update`\n* `pre_delete`\n* `post_delete`\n* `pre_relation_add`\n* `post_relation_add`\n* `pre_relation_remove`\n* `post_relation_remove`\n* `post_bulk_update`\n\n\n[sqlalchemy-core]: https://docs.sqlalchemy.org/en/latest/core/\n[databases]: https://github.com/encode/databases\n[pydantic]: https://pydantic-docs.helpmanual.io/\n[encode/orm]: https://github.com/encode/orm/\n[alembic]: https://alembic.sqlalchemy.org/en/latest/\n[fastapi]: https://fastapi.tiangolo.com/\n[documentation]: https://collerek.github.io/ormar/\n[migrations]: https://collerek.github.io/ormar/models/migrations/\n[asyncio]: https://docs.python.org/3/library/asyncio.html\n[releases]: https://collerek.github.io/ormar/releases/\n[tests]: https://github.com/collerek/ormar/tree/master/tests\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "An async ORM with fastapi in mind and pydantic validation.",
    "version": "0.20.0",
    "project_urls": {
        "Documentation": "https://collerek.github.io/ormar/",
        "Homepage": "https://github.com/collerek/ormar",
        "Repository": "https://github.com/collerek/ormar"
    },
    "split_keywords": [
        "orm",
        "sqlalchemy",
        "fastapi",
        "pydantic",
        "databases",
        "async",
        "alembic"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "732abaa0f9a0b5a230fe5eb2e982495b8a17158cc2259ddb5226370cc4c070a4",
                "md5": "d44e1aeeab529054b207e3ea337b50c1",
                "sha256": "a215e754f9567f0fe86cfcb250b05bbb08259e23b5663afbf1641354796ae5b5"
            },
            "downloads": -1,
            "filename": "ormar-0.20.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d44e1aeeab529054b207e3ea337b50c1",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8.0,<4.0.0",
            "size": 158794,
            "upload_time": "2024-03-16T19:55:46",
            "upload_time_iso_8601": "2024-03-16T19:55:46.648031Z",
            "url": "https://files.pythonhosted.org/packages/73/2a/baa0f9a0b5a230fe5eb2e982495b8a17158cc2259ddb5226370cc4c070a4/ormar-0.20.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1c978762090afb169a868a049b0df69b56641aa90b34769d62b406db4672faf",
                "md5": "e64fda0f1817d19964b95ac96a1b51dd",
                "sha256": "e9b05fa7cc6cc540470425c98646ba97f0cd90f4030ab626eed5b1356f25778e"
            },
            "downloads": -1,
            "filename": "ormar-0.20.0.tar.gz",
            "has_sig": false,
            "md5_digest": "e64fda0f1817d19964b95ac96a1b51dd",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8.0,<4.0.0",
            "size": 130071,
            "upload_time": "2024-03-16T19:55:49",
            "upload_time_iso_8601": "2024-03-16T19:55:49.287924Z",
            "url": "https://files.pythonhosted.org/packages/e1/c9/78762090afb169a868a049b0df69b56641aa90b34769d62b406db4672faf/ormar-0.20.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-16 19:55:49",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "collerek",
    "github_project": "ormar",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "ormar"
}
        
Elapsed time: 0.33092s