Skip to content

Instantly share code, notes, and snippets.

View viacheslav-gurin's full-sized avatar

Viacheslav Gurin viacheslav-gurin

View GitHub Profile
@vladox
vladox / download_sentry_data.py
Last active April 13, 2024 01:00 — forked from bubenkoff/download_sentry_data.py
Download all sentry events for a project. Useful for data processing
"""Download sentry data.
usage:
python download_sentry_data.py <org>/<project> <api_key>
"""
import requests
import csv
import sys
if __name__ == '__main__':