Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

The official Python SDK for Sentry.io

License

NotificationsYou must be signed in to change notification settings

getsentry/sentry-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Sentry for Python

Bad software is everywhere, and we're tired of it. Sentry is on a mission to help developers write better software faster, so we can get back to enjoying technology. If you want to join usCheck out our open positions.

DiscordTwitter FollowPyPi page link -- versionpythonBuild Status


Official Sentry SDK for Python

Welcome to the official Python SDK forSentry.

📦 Getting Started

Prerequisites

You need a Sentryaccount andproject.

Installation

Getting Sentry into your project is straightforward. Just run this command in your terminal:

pip install --upgrade sentry-sdk

Basic Configuration

Here's a quick configuration example to get Sentry up and running:

importsentry_sdksentry_sdk.init("https://12927b5f211046b575ee51fd8b1ac34f@o1.ingest.sentry.io/1",# Your DSN here# Set traces_sample_rate to 1.0 to capture 100%# of traces for performance monitoring.traces_sample_rate=1.0,)

With this configuration, Sentry will monitor for exceptions and performance issues.

Quick Usage Example

To generate some events that will show up in Sentry, you can log messages or capture errors:

importsentry_sdksentry_sdk.init(...)# same as abovesentry_sdk.capture_message("Hello Sentry!")# You'll see this in your Sentry dashboard.raiseValueError("Oops, something went wrong!")# This will create an error event in Sentry.

📚 Documentation

For more details on advanced usage, integrations, and customization, check out the full documentation onhttps://docs.sentry.io.

🧩 Integrations

Sentry integrates with a ton of popular Python libraries and frameworks, includingFastAPI,Django,Celery,OpenAI and many, many more. Check out thefull list of integrations to get the full picture.

🚧 Migrating Between Versions?

From1.x to2.x

If you're using the older1.x version of the SDK, now's the time to upgrade to2.x. It includes significant upgrades and new features. Check ourmigration guide for assistance.

Fromraven-python

Using the legacyraven-python client? It's now in maintenance mode, and we recommend migrating to the new SDK for an improved experience. Get all the details in ourmigration guide.

🙌 Want to Contribute?

We'd love your help in improving the Sentry SDK! Whether it's fixing bugs, adding features, writing new integrations, or enhancing documentation, every contribution is valuable.

For details on how to contribute, please read ourcontribution guide and explore theopen issues.

🛟 Need Help?

If you encounter issues or need help setting up or configuring the SDK, don't hesitate to reach out to theSentry Community on Discord. There is a ton of great people there ready to help!

🔗 Resources

Here are all resources to help you make the most of Sentry:

📃 License

The SDK is open-source and available under the MIT license. Check out theLICENSE file for more information.

😘 Contributors

Thanks to everyone who has helped improve the SDK!


[8]ページ先頭

©2009-2025 Movatter.jp