├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── README.md ├── airbrake ├── __about__.py ├── __init__.py ├── exc.py ├── handler.py ├── notice.py ├── notifier.py └── utils.py ├── pylintrc ├── requirements.txt ├── setup.cfg ├── setup.py ├── test-requirements.txt ├── tests ├── __init__.py ├── _real_test.py ├── test_handler.py ├── test_notice.py ├── test_notifier.py ├── test_traceback.py └── test_utils.py └── tox.ini /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/README.md -------------------------------------------------------------------------------- /airbrake/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/airbrake/__about__.py -------------------------------------------------------------------------------- /airbrake/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/airbrake/__init__.py -------------------------------------------------------------------------------- /airbrake/exc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/airbrake/exc.py -------------------------------------------------------------------------------- /airbrake/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/airbrake/handler.py -------------------------------------------------------------------------------- /airbrake/notice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/airbrake/notice.py -------------------------------------------------------------------------------- /airbrake/notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/airbrake/notifier.py -------------------------------------------------------------------------------- /airbrake/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/airbrake/utils.py -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/pylintrc -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.20.0 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/_real_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/tests/_real_test.py -------------------------------------------------------------------------------- /tests/test_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/tests/test_handler.py -------------------------------------------------------------------------------- /tests/test_notice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/tests/test_notice.py -------------------------------------------------------------------------------- /tests/test_notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/tests/test_notifier.py -------------------------------------------------------------------------------- /tests/test_traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/tests/test_traceback.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbrake/airbrake-python/HEAD/tox.ini --------------------------------------------------------------------------------