Skip to content

Python library for connecting and retrieving data from the Sentry API - https://docs.sentry.io/api/.

Notifications You must be signed in to change notification settings

andrei-1111/sentryapiwrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The sentry resources available on this package are mostly for reading data only but it can be added later if needed.

Example Usage

"""
Script to export specific issue events to a csv file using pandas.
"""

import pandas as pd
from sentryapiwrapper.events import (
    list_issue_events,
)

issue_id = 1234
issue_events = list_issue_events(issue_id)

df_obj = pd.DataFrame(issue_events)
df_obj.to_csv('/file/location/export.csv', index=None)

About

Python library for connecting and retrieving data from the Sentry API - https://docs.sentry.io/api/.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages