├── .gitignore ├── LICENSE.txt ├── README.md ├── crashreporter ├── __init__.py ├── api.py ├── crashreporter.py ├── email_report.html ├── injector.py ├── process.py ├── test_scripts │ └── object_references.py └── tools.py ├── example.png ├── example_report.html ├── requirements.txt ├── setup.cfg ├── setup.py └── unit_tests ├── __init__.py └── multiprocess.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .idea 3 | report.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lobocv/crashreporter/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lobocv/crashreporter/HEAD/README.md -------------------------------------------------------------------------------- /crashreporter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lobocv/crashreporter/HEAD/crashreporter/__init__.py -------------------------------------------------------------------------------- /crashreporter/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lobocv/crashreporter/HEAD/crashreporter/api.py -------------------------------------------------------------------------------- /crashreporter/crashreporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lobocv/crashreporter/HEAD/crashreporter/crashreporter.py -------------------------------------------------------------------------------- /crashreporter/email_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lobocv/crashreporter/HEAD/crashreporter/email_report.html -------------------------------------------------------------------------------- /crashreporter/injector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lobocv/crashreporter/HEAD/crashreporter/injector.py -------------------------------------------------------------------------------- /crashreporter/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lobocv/crashreporter/HEAD/crashreporter/process.py -------------------------------------------------------------------------------- /crashreporter/test_scripts/object_references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lobocv/crashreporter/HEAD/crashreporter/test_scripts/object_references.py -------------------------------------------------------------------------------- /crashreporter/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lobocv/crashreporter/HEAD/crashreporter/tools.py -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lobocv/crashreporter/HEAD/example.png -------------------------------------------------------------------------------- /example_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lobocv/crashreporter/HEAD/example_report.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lobocv/crashreporter/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lobocv/crashreporter/HEAD/setup.py -------------------------------------------------------------------------------- /unit_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unit_tests/multiprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lobocv/crashreporter/HEAD/unit_tests/multiprocess.py --------------------------------------------------------------------------------