

Streply provides automatic integrations for popular Python frameworks. Django, Flask, FastAPI, bottle, celery, rq and more. Hook into your existing code without any configuration.
The Streply SDK uses integrations to hook into the functionality of popular libraries to automatically instrument your application and give you the best data out of the box.
Django
Auto-enabled
Flask
Auto-enabled
FastAPI
Auto-enabled
Bottle
Auto-enabled
Celery
Auto-enabled
RQ (Redis Queue)
Auto-enabled
Most integrations are enabled automatically when you install the Streply SDK. You don't need to do anything else.
import streply
# All supported integrations are auto-enabled
streply.init(
dsn="https://clientPublicKey@api.streply.com/projectId"
)
If you want to disable specific integrations, you can do so during initialization:
import streply
streply.init(
dsn="https://clientPublicKey@api.streply.com/projectId",
integrations=[
# Only enable specific integrations
streply.integrations.DjangoIntegration(),
streply.integrations.CeleryIntegration(),
]
)
Getting started is simple
We've got libraries available for all the popular programming languages and frameworks out there. Installing will take just 5 minutes.
Install the streply package:
pip install --upgrade streply-sdk
Then initialize Streply (works with Python, Django, Flask, FastAPI, bottle, celery, rq):
from streply.streply import streply streply('https://clientPublicKey@api.streply.com/projectId')
Read articles for all developers.