Sep 15, 2026
Python1.7.2
Added
-
Add an
is_activeattribute to the AppSignal client. It tells you whether AppSignal is configured to start, so you can use it to only run code that makes sense when AppSignal is active:Pythonfrom appsignal import Appsignal appsignal = Appsignal(name="My app name", push_api_key="my-push-api-key", active=True) if appsignal.is_active: # Only runs when AppSignal is activeBefore this change, the only way to check this was to read the client's private configuration object.
View the Python package v1.7.2 changelog for more information.