Metadata-Version: 2.1
Name: sentrypy
Version: 0.1.2
Summary: The pythonic API wrapper for Sentry.io
Home-page: https://github.com/perfect-operations/sentrypy
Author: Paul Weber
License: UNKNOWN
Description: # Quickstart
        
        [Sentry.io](https://sentry.io/) is an error tracking platform that helps you monitor and
        resolve issues in real-time.
        
        [sentrypy](https://github.com/perfect-operations/sentrypy) is a Python wrapper for
        the Sentry API to:
        
        - Retrieve error data
        - Automate incident responses
        - Integrate with your workflow
        
        ## Installation
        
        First create a sentry token ([official tutorial](https://docs.sentry.io/api/guides/create-auth-token/)).
        
        Then install by one of the options below.
        
        ##### Installing from PyPI
        ```
        pip install sentrypy
        ```
        
        ##### Installing from source
        ```
        git clone git@github.com:perfect-operations/sentrypy.git
        pip install -e sentrypy
        ```
        
        ## Usage
        
        ```python
        from sentrypy.sentry import Sentry
        
        # Connect to Sentry API
        sentry = Sentry(token="your_secret_token")
        
        # Retrieve a project
        project = sentry.project(organization_slug="your_org", project_slug="your_project")
        
        # Inspect the issues
        for issue in project.issues():
            print(issue.title)
        ```
        Example output:
        ```
        IndexError: list index out of range
        WebDriverException: Message: unknown error: session deleted because of page crash
        AttributeError: 'NoneType' object has no attribute 'startswith'
        ```
        ## Bonus
        This is an early stage project. Your ideas are welcome!
        
        Meet me [on Twitter](https://twitter.com/drpaulw)!
        
Keywords: sentry api wrapper pythonic
Platform: UNKNOWN
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
