Instalation
You can install ORMagic using pip:
pip install ORMagic
By default, ORMagic uses SQLite as a database, so you don't need to install any additional dependencies. But if you want to use another database, you need to install the appropriate database driver, for example, for PostgreSQL you need to install psycopg2, you can do it with the following command:
pip install ORMagic[postgres]
Additionally, to use a database other than SQLite, you need to set the ORMAGIC_DATABASE_URL
environment,
more information about that you can find in the documentation.