To simplify database interactions in Python by providing an async-native Object-Relational Mapper with a familiar Django-like API.
Tortoise ORM is an asynchronous ORM for Python, supporting databases like SQLite, MySQL, PostgreSQL, and more. It abstracts database operations, allowing developers to define schemas and manage relationships using Python objects. You install it via pip, for example, `pip install "tortoise-orm[sqlite]"`, and then use its model definitions to interact with your database.
To simplify database interactions in Python by providing an async-native Object-Relational Mapper with a familiar Django-like API.
Python developers building asynchronous applications who want to manage their database schema and queries using an object-oriented approach.