Skip to content

Commit bf25741

Browse files
authored
Update README.md
1 parent 72c0d43 commit bf25741

File tree

1 file changed

+15
-26
lines changed

1 file changed

+15
-26
lines changed

README.md

Lines changed: 15 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@
22
<img src="https://sentry-brand.storage.googleapis.com/github-banners/github-sdk-python.png" alt="Sentry for Python">
33
</a>
44

5-
Bad software is everywhere, and developers often deal with bugs that crash systems at the worst possible moments. Enter **Sentry**: our mission is to help developers write better software faster, so you can focus on building.
5+
6+
_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 us, [<kbd>**check out our open positions**</kbd>](https://sentry.io/careers/)_.
67

78
# Official Sentry SDK for Python
89

910
[![Build Status](https://github.com/getsentry/sentry-python/actions/workflows/ci.yml/badge.svg)](https://github.com/getsentry/sentry-python/actions/workflows/ci.yml)
1011
[![PyPi page link -- version](https://img.shields.io/pypi/v/sentry-sdk.svg)](https://pypi.python.org/pypi/sentry-sdk)
1112
[![Discord](https://img.shields.io/discord/621778831602221064)](https://discord.gg/cWnMQeA)
1213

13-
Welcome to the official Python SDK for **[Sentry](http://sentry.io/)**! If you care about tracking down every error and performance bottleneck in your app, you're in the right place.
14+
Welcome to the official Python SDK for **[Sentry](http://sentry.io/)**!
1415

1516
## Getting Started
1617

@@ -34,11 +35,11 @@ sentry_sdk.init(
3435

3536
# Set traces_sample_rate to 1.0 to capture 100%
3637
# of transactions for performance monitoring.
37-
traces_sample_rate=1.0, # Adjust this based on your performance needs
38+
traces_sample_rate=1.0,
3839
)
3940
```
4041

41-
With this configuration, Sentry will monitor for exceptions and performance issues in the background while you continue coding. Adjust the `traces_sample_rate` to fine-tune performance monitoring.
42+
With this configuration, Sentry will monitor for exceptions and performance issues.
4243

4344
### Quick Usage Example
4445

@@ -58,18 +59,15 @@ For more details on advanced usage, integrations, and customization, check out t
5859
- [Official SDK Docs](https://docs.sentry.io/platforms/python/)
5960
- [API Reference](https://getsentry.github.io/sentry-python/)
6061

61-
### Migrating from `raven-python`?
62-
If you’re still using `raven-python`, migrating to the new Sentry SDK is smooth. [Check out this guide](https://docs.sentry.io/platforms/python/migration/) for details.
63-
6462
## Integrations
6563

66-
Sentry integrates with several popular Python libraries and frameworks, including:
64+
Sentry integrates with many popular Python libraries and frameworks, including:
6765

68-
- [Django](https://docs.sentry.io/platforms/python/integrations/django/) – Full support for error and performance tracking.
69-
- [Flask](https://docs.sentry.io/platforms/python/integrations/flask/) – Flask-specific error handling.
70-
- [FastAPI](https://docs.sentry.io/platforms/python/integrations/fastapi/) – FastAPI support.
71-
- [Celery](https://docs.sentry.io/platforms/python/integrations/celery/) – Monitoring distributed tasks.
72-
- [AWS Lambda](https://docs.sentry.io/platforms/python/integrations/aws-lambda/) – Support for serverless applications.
66+
- [Django](https://docs.sentry.io/platforms/python/integrations/django/)
67+
- [Flask](https://docs.sentry.io/platforms/python/integrations/flask/)
68+
- [FastAPI](https://docs.sentry.io/platforms/python/integrations/fastapi/)
69+
- [Celery](https://docs.sentry.io/platforms/python/integrations/celery/)
70+
- [AWS Lambda](https://docs.sentry.io/platforms/python/integrations/aws-lambda/)
7371

7472
Want more? [Check out the full list of integrations](https://docs.sentry.io/platforms/python/integrations/).
7573

@@ -95,34 +93,25 @@ For details on how to contribute, please check out [CONTRIBUTING.md](CONTRIBUTIN
9593

9694
## Need Help?
9795

98-
If you encounter issues, don’t hesitate to reach out to our community for support:
99-
100-
- **[Sentry Discord Community](https://discord.com/invite/Ww9hbqr)** – A helpful community is ready to assist.
101-
- **[Stack Overflow](http://stackoverflow.com/questions/tagged/sentry)** – A great place for asking questions.
102-
- **[Sentry Forum](https://forum.sentry.io/c/sdks)** – Share ideas and get advice.
96+
If you encounter issues or need help setting up or configuring the SDK, don’t hesitate to reach out to the [Sentry Community on Discord](https://discord.com/invite/Ww9hbqr). There is a ton of great people there ready to help!
10397

10498
## Resources
10599

106100
Here are additional resources to help you make the most of Sentry:
107101

108102
- [![Documentation](https://img.shields.io/badge/documentation-sentry.io-green.svg)](https://docs.sentry.io/quickstart/) – Official documentation to get started.
109-
- [![Forum](https://img.shields.io/badge/forum-sentry-green.svg)](https://forum.sentry.io/c/sdks) – Forums for in-depth discussions.
110-
- [![Stack Overflow](https://img.shields.io/badge/stack%20overflow-sentry-green.svg)](http://stackoverflow.com/questions/tagged/sentry) – Ask questions here.
111103
- [![Discord](https://img.shields.io/discord/621778831602221064)](https://discord.gg/Ww9hbqr) – Join our Discord community.
112-
- [![Twitter Follow](https://img.shields.io/twitter/follow/getsentry?label=getsentry&style=social)](https://twitter.com/intent/follow?screen_name=getsentry) – Follow us on Twitter for updates.
104+
- [![Twitter Follow](https://img.shields.io/twitter/follow/getsentry?label=getsentry&style=social)](https://twitter.com/intent/follow?screen_name=getsentry) – Follow us on X (Twitter) for updates.
105+
- [![Stack Overflow](https://img.shields.io/badge/stack%20overflow-sentry-green.svg)](http://stackoverflow.com/questions/tagged/sentry) – Questions and answers related to Sentry.
113106

114107
## License
115108

116109
The SDK is open-source and available under the MIT license. Check out the [LICENSE](LICENSE) file for more information.
117110

118111
---
119112

120-
Thanks to all the contributors who have made the Sentry Python SDK great!
113+
Thanks to everyone who has helped improve the SDK!
121114

122115
<a href="https://github.com/getsentry/sentry-python/graphs/contributors">
123116
<img src="https://contributors-img.web.app/image?repo=getsentry/sentry-python" />
124117
</a>
125-
126-
---
127-
128-
Keep writing better code and let Sentry handle the errors.

0 commit comments

Comments
 (0)