diff --git a/docs/platforms/python/configuration/options.mdx b/docs/platforms/python/configuration/options.mdx index a16caac7bb5781..979cbcbe8a258f 100644 --- a/docs/platforms/python/configuration/options.mdx +++ b/docs/platforms/python/configuration/options.mdx @@ -320,6 +320,22 @@ sentry_sdk.init( + +An experimental fully async transport. Requires the asyncio integration and the [httpcore[asyncio]](https://www.encode.io/httpcore/async/) library. If enabled, the Sentry SDK has to be initialised while an event loop is running. + +```python +sentry_sdk.init( + _experiments={ + "transport_async": True, + }, + integrations=[ + AsyncioIntegration(), + ], +) +``` + + + ## Tracing Options