Django
Last updated
Was this helpful?
Last updated
Was this helpful?
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
By enabling this feature, users with the required permission level can create Live Query components (, and ), allowing them to create more sophisticated requests to your database, by leveraging the underlying query language, SQL in this case.
You can enable this feature by setting a connection name
(works as an identifier) when creating your datasource. This connection name
will be reflected on the UI when configuring a Live Query component, it should have a clear meaning for your Forest users.
At this stage, ForestAdmin should display a connection
field next to the live query
input box.
To support multiple databases, the live_query_connection
can support a mapping of {"connection_name": "database_name"}
.
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.
Or use sync_to_async
:
In a synchronous context, you can query Forest Admin asynchronous methods with asyncio
:
Or use async_to_sync
:
If you are working with and using the previous example, the connection main_database
will be bind to the default
database django is using.
The Forest Admin agent uses async internally, while . Under the hood, the agent uses sync_to_async
to query the ORM.
In an asynchronous function, you can query the Django ORM with the :