All Projects → getsentry → Raven Python

getsentry / Raven Python

Licence: bsd-3-clause
Raven is the legacy Python client for Sentry (getsentry.com) — replaced by sentry-python

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Raven Python

Sentry Php
The official PHP SDK for Sentry (sentry.io)
Stars: ✭ 1,591 (-5.13%)
Mutual labels:  sentry, crash-reporting, crash-reports, sentry-client
Sentry
Sentry is cross-platform application monitoring, with a focus on error reporting.
Stars: ✭ 29,700 (+1671.02%)
Mutual labels:  monitoring, sentry, crash-reporting, crash-reports
Sentry Javascript
Official Sentry SDKs for JavaScript. We're hiring https://grnh.se/ca81c1701us
Stars: ✭ 6,012 (+258.5%)
Mutual labels:  sentry, crash-reporting, sentry-client
Sentry Telegram
Plugin for Sentry which allows sending notification via Telegram messenger.
Stars: ✭ 168 (-89.98%)
Mutual labels:  sentry, crash-reporting, crash-reports
Sentry Laravel
Laravel SDK for Sentry
Stars: ✭ 927 (-44.72%)
Mutual labels:  sentry, crash-reporting, crash-reports
Exceptionless
Exceptionless server and jobs
Stars: ✭ 2,107 (+25.64%)
Mutual labels:  monitoring, crash-reporting, crash-reports
nextcloud sentry
Sentry integration for Nextcloud
Stars: ✭ 26 (-98.45%)
Mutual labels:  crash-reporting, sentry, sentry-client
Sentry Cocoa
The official Sentry SDK for iOS, tvOS, macOS, watchOS
Stars: ✭ 370 (-77.94%)
Mutual labels:  sentry, crash-reporting, crash-reports
Sentry Kubernetes
Kubernetes event reporter for Sentry
Stars: ✭ 345 (-79.43%)
Mutual labels:  monitoring, sentry, crash-reporting
Sentry Go
Official Sentry SDK for Go
Stars: ✭ 415 (-75.25%)
Mutual labels:  sentry, crash-reporting, crash-reports
Ohbug
An open source application information monitoring platform.
Stars: ✭ 101 (-93.98%)
Mutual labels:  monitoring, crash-reporting, crash-reports
Raven Go
Sentry client in Go
Stars: ✭ 554 (-66.96%)
Mutual labels:  crash-reporting, crash-reports
Sentry Cli
A command line utility to work with Sentry.
Stars: ✭ 567 (-66.19%)
Mutual labels:  sentry, crash-reporting
Raven Node
A standalone (Node.js) client for Sentry
Stars: ✭ 462 (-72.45%)
Mutual labels:  crash-reporting, crash-reports
Countly Sdk Android
Countly Product Analytics Android SDK
Stars: ✭ 626 (-62.67%)
Mutual labels:  crash-reporting, crash-reports
Bugsnag Js
Javascript error handling tool for Bugsnag. Monitor and report JavaScript bugs & errors.
Stars: ✭ 625 (-62.73%)
Mutual labels:  monitoring, crash-reporting
Sentry Ruby
Sentry SDK for Ruby
Stars: ✭ 724 (-56.83%)
Mutual labels:  crash-reporting, crash-reports
Sentry Dart
Sentry SDK for Dart and Flutter
Stars: ✭ 428 (-74.48%)
Mutual labels:  sentry, crash-reporting
Sentry Python
The new Python SDK for Sentry.io
Stars: ✭ 870 (-48.12%)
Mutual labels:  sentry, crash-reporting
Bugsnag Android
Bugsnag crash monitoring and reporting tool for Android apps
Stars: ✭ 990 (-40.97%)
Mutual labels:  crash-reporting, crash-reports


Deprecated for sentry-sdk package

Raven is deprecated in favor of Sentry-Python.

Feature development and most bugfixes happen exclusively there, as Raven is in maintenance mode.


Raven - Sentry for Python

PyPi page link -- version https://travis-ci.org/getsentry/raven-python.svg?branch=master PyPi page link -- MIT licence PyPi page link -- Python versions Code Climate

Raven is the official legacy Python client for Sentry, officially supports Python 2.6–2.7 & 3.3–3.7, and runs on PyPy and Google App Engine.

It tracks errors and exceptions that happen during the execution of your application and provides instant notification with detailed information needed to prioritize, identify, reproduce and fix each issue.

It provides full out-of-the-box support for many of the popular python frameworks, including Django, and Flask. Raven also includes drop-in support for any WSGI-compatible web application.

Your application doesn't live on the web? No problem! Raven is easy to use in any Python application.

For more information, see our Python Documentation for framework integrations and other goodies.

Features

  • Automatically report (un)handled exceptions and errors
  • Send customized diagnostic data
  • Process and sanitize data before sending it over the network

Quickstart

It's really easy to get started with Raven. After you complete setting up a project in Sentry, you’ll be given a value which we call a DSN, or Data Source Name. You will need it to configure the client.

Install the latest package with pip and configure the client:

pip install raven --upgrade

Create a client and capture an example exception:

from raven import Client

client = Client('___DSN___')

try:
    1 / 0
except ZeroDivisionError:
    client.captureException()

Raven Python is more than that however. Checkout our Python Documentation.

Contributing

Raven will continue to be maintained for bugfixes and contributions are more than welcome! New features should only go into the new sentry-python SDK.

There are many ways to contribute:

Resources

Not using Python? Check out our SDKs for other platforms.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].