Django
This is the official documentation of the forestadmin-agent-django
and forestadmin-agent-flask
Python agents.
The Django data source allows importing collections from all models of your Django project.
To make everything work as expected, you need to install the package django
.
Note that:
Django relationships will be respected
The Django data source works with multiple databases
The Django data source is added by default when using Django agent. You can disable this behavior by adding
FOREST_AUTO_ADD_DJANGO_DATASOURCE = False
in your settings.py
Customization function
Django and Async
The Forest Admin agent uses async internally, while Django ORM is part of Django async unsafe ↗. Under the hood, the agent uses sync_to_async
to query the ORM.
For custom functions such as actions
, computed fields
, hooks
, etc..., if an asynchronous function is specified, it will be called in an asynchronous thread (also known as an event loop). Whereas if it's a synchronous function, it will be executed directly within a synchronous thread. The method call will be wrapped with sync_to_async
.
Because the agent core operates asynchronously, some APIs are asynchronous. This can result in a combination of asynchronous calls to the Forest Admin API and synchronous calls to Django ORM from custom functions.
Asynchronous function
In an asynchronous function, you can query the Django ORM with the async methods provided by Django ↗:
Or use sync_to_async
:
Synchronous function
In a synchronous context, you can query Forest Admin asynchronous methods with asyncio
:
Or use async_to_sync
:
Last updated