# tortoise-orm **Repository Path**: ivan_wh/tortoise-orm ## Basic Information - **Project Name**: tortoise-orm - **Description**: Familiar asyncio ORM for python, built with relations in mind - **Primary Language**: Python - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-08-19 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ============ Tortoise ORM ============ .. image:: https://badges.gitter.im/tortoise/community.svg :target: https://gitter.im/tortoise/community .. image:: https://travis-ci.com/tortoise/tortoise-orm.svg?branch=master :target: https://travis-ci.com/tortoise/tortoise-orm .. image:: https://coveralls.io/repos/github/tortoise/tortoise-orm/badge.svg :target: https://coveralls.io/github/tortoise/tortoise-orm .. image:: https://api.codacy.com/project/badge/Grade/b5b77021ba284e4a9e0c033a4611b046 :target: https://app.codacy.com/app/Tortoise/tortoise-orm .. image:: https://readthedocs.org/projects/tortoise-orm/badge/?version=latest :target: http://tortoise-orm.readthedocs.io/en/latest/ .. image:: https://img.shields.io/pypi/v/tortoise-orm.svg?style=flat :target: https://pypi.python.org/pypi/tortoise-orm Introduction ============ Tortoise ORM is an easy-to-use ``asyncio`` ORM *(Object Relational Mapper)* inspired by Django. Tortoise ORM was build with relations in mind and admiration for the excellent and popular Django ORM. It's engraved in it's design that you are working not with just tables, you work with relational data. You can find docs at `ReadTheDocs `_ .. note:: Tortoise ORM is young project and breaking changes are to be expected. We keep a `Changelog `_ and it will have possible breakage clearly documented. Tortoise ORM is supported on CPython >= 3.5.3 for SQLite, MySQL and PostgreSQL, and PyPy3.5 >= 5.10 for SQLite and MySQL only. Why was Tortoise ORM built? --------------------------- Python has many existing and mature ORMs, unfortunately they are designed with an opposing paradigm of how I/O gets processed. ``asyncio`` is relatively new technology that has a very different concurrency model, and the largest change is regarding how I/O is handled. However, Tortoise ORM is not first attempt of building ``asyncio`` ORM, there are many cases of developers attempting to map synchronous python ORMs to the async world, initial attempts did not have a clean API. Hence we started Tortoise ORM. Tortoise ORM is designed to be functional, yet familiar, to ease the migration of developers wishing to switch to ``asyncio``. It also performs well when compared to other Python ORMS, only ever losing to Pony ORM: .. image:: docs/ORM_Perf.png :target: https://github.com/tortoise/orm-benchmarks How is an ORM useful? --------------------- When you build an application or service that uses a relational database, there is a point when you can't just get away with just using parameterized queries or even query builder, you just keep repeating yourself, writing slightly different code for each entity. Code has no idea about relations between data, so you end up concatenating your data almost manually. It is also easy to make a mistake in how you access your database, making it easy for SQL-injection attacks to occur. Your data rules are also distributed, increasing the complexity of managing your data, and even worse, is applied inconsistently. An ORM (Object Relational Mapper) is desgined to address these issues, by centralising your data model and data rules, ensuring that your data is managed safely (providing immunity to SQL-injection) and keeps track of relationships so you don't have to. Getting Started =============== Installation ------------ First you have to install tortoise like this: .. code-block:: bash pip install tortoise-orm Then you should install your db driver .. code-block:: bash pip install asyncpg aiosqlite Quick Tutorial -------------- Primary entity of tortoise is ``tortoise.models.Model``. You can start writing models like this: .. code-block:: python3 from tortoise.models import Model from tortoise import fields class Tournament(Model): id = fields.IntField(pk=True) name = fields.TextField() def __str__(self): return self.name class Event(Model): id = fields.IntField(pk=True) name = fields.TextField() tournament = fields.ForeignKeyField('models.Tournament', related_name='events') participants = fields.ManyToManyField('models.Team', related_name='events', through='event_team') def __str__(self): return self.name class Team(Model): id = fields.IntField(pk=True) name = fields.TextField() def __str__(self): return self.name After you defined all your models, tortoise needs you to init them, in order to create backward relations between models and match your db client with appropriate models. You can do it like this: .. code-block:: python3 from tortoise import Tortoise async def init(): # Here we connect to a SQLite DB file. # also specify the app name of "models" # which contain models from "app.models" await Tortoise.init( db_url='sqlite://db.sqlite3', modules={'models': ['app.models']} ) # Generate the schema await Tortoise.generate_schemas() Here we create connection to SQLite database in the local directory called ``db.sqlite3``, and then we discover & initialise models. Tortoise ORM currently supports the following databases: * SQLite * PostgreSQL (requires ``asyncpg``) * MySQL (requires ``aiomysql``) ``generate_schema`` generates the schema on an empty database. Tortoise generates schemas in safe mode by default which includes the `IF NOT EXISTS` clause, so you may include it in your main code. After that you can start using your models: .. code-block:: python3 # Create instance by save tournament = Tournament(name='New Tournament') await tournament.save() # Or by .create() await Event.create(name='Without participants', tournament=tournament) event = await Event.create(name='Test', tournament=tournament) participants = [] for i in range(2): team = Team.create(name='Team {}'.format(i + 1)) participants.append(team) # M2M Relationship management is quite straightforward # (also look for methods .remove(...) and .clear()) await event.participants.add(*participants) # You can query related entity just with async for async for team in event.participants: pass # After making related query you can iterate with regular for, # which can be extremely convenient for using with other packages, # for example some kind of serializers with nested support for team in event.participants: pass # Or you can make preemptive call to fetch related objects selected_events = await Event.filter( participants=participants[0].id ).prefetch_related('participants', 'tournament') # Tortoise supports variable depth of prefetching related entities # This will fetch all events for team and in those events tournaments will be prefetched await Team.all().prefetch_related('events__tournament') # You can filter and order by related models too await Tournament.filter( events__name__in=['Test', 'Prod'] ).order_by('-events__participants__name').distinct() Contributing ============ Please have a look at the `Contribution Guide `_ License ======= This project is licensed under the Apache License - see the `LICENSE.txt `_ file for details