Metadata-Version: 1.1
Name: exreporter
Version: 0.1.1
Summary: Report Internal Server Errors as Issues
Home-page: https://github.com/vedarthk/exreporter
Author: Vedarth Kulkarni
Author-email: vedarthk@vedarthz.in
License: MIT
Description: =========================================
        Exreporter: Report Internal Server Errors
        =========================================
        
        .. image:: https://badge.fury.io/py/exreporter.png
            :target: http://badge.fury.io/py/exreporter
        
        .. image:: https://travis-ci.org/vedarthk/exreporter.png?branch=master
                :target: https://travis-ci.org/vedarthk/exreporter
        
        Exreporter is an MIT Licensed library, written in Python to report internal server errors and exceptions in background applications to issue trackers such as Github.
        
        This will help in reducing the dependency on error emails for internal server error notifications and to manage them in a single, right place. Reported issues contain everything a developer needs, debugging got a whole lot simpler.
        
        Also it should be easy to use:
        
        .. code-block:: python
        
            from exreporter.credentials import GithubCredentials
            from exreporter import exreporter
            credentials = GithubCredentials(user="username", repo="repo-name", auth_token="personal-token")
            exreporter.report_github_issue(credentials=credentials, labels=['Bug'])
        
        
        Features
        --------
        
        - Creates issues in issue trackers
        - Aggregate same kind of issues
        - Handle multiple occurrence
        
        
        Usage
        --------
        
        Usage reference available at https://exreporter.readthedocs.org/en/latest/usage.html
        
        
        Documentation
        -------------
        
        Documentation is available at https://exreporter.readthedocs.org/.
        
        
        TODOS
        -----
        
        #. Add support for Bitbucket
        
        
        
        
        History
        -------
        
        0.1.0 (2014-12-11)
        ---------------------
        
        * First release on PyPI.
        
        0.1.1 (2014-12-15)
        ---------------------
        
        * Change development status to Alpha.
        * Also add contrib module - django_middlewares
        
Keywords: exreporter
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.7
