raven-python icon indicating copy to clipboard operation
raven-python copied to clipboard

Raven is the legacy Python client for Sentry (getsentry.com) — replaced by sentry-python

Results 104 raven-python issues
Sort by recently updated
recently updated
newest added

Adds a SemVer stability badge that displays the percentage of CI runs that pass when updating raven between SemVer compatible versions. Data comes from update runs that Dependabot has done...

When trying to create an instance of `flask.contrib.Sentry`, like so: import raven from raven.contrib.flask import Sentry sentry = Sentry(level=logging.ERROR, release=raven.fetch_git_sha(os.path.dirname(__file__))) I get this error : `TypeError: __init__() got an unexpected...

Maybe there is another solution to this problem. We have a django view that in some part of the code has a: ``` try: ... except Exception: # we want...

I was trying to use Raven in one of our AWS Lambdas, but 52 logged errors (all instances of the same error that we see in a couple percent of...

Hi guys, I wrote as simple project spawning 2 logging events (it's a bit rusty, but it was just created for testing purposes): ``` import logging from aiohttp import ServerDisconnectedError...

If I decorate a function that is called as a BatchInvoke [1] with `@client.capture_exceptions`, raven will bomb out as it expects the `event` parameter to be a single item in...

https://github.com/getsentry/raven-python/blob/dc9ef04fcfd81b76e8b7f1a57f1fa03cc5abfa5a/raven/base.py#L197

[Falcon](https://falconframework.org/) seems to be getting quite some traction these days, surpassing both pyramid and pylons in number of stars on GitHub. I would personally love to see an officially endorsed...

I have a Problem with raven.processors.SanitizePasswordsProcessor while adding additional items which need to be sanitized. If I add additional items to be sanitized, it doesn't works for additional tags which...

We followed the official document (https://docs.sentry.io/clients/python/usage/) to use Raven client to log events to Sentry server as follows `from raven import Client` `client = Client(DSN)` `client.captureMessage(message)` Everything worked perfectly fine...