├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── bugbuzz ├── __init__.py ├── client.py ├── debugger.py └── packages │ ├── __init__.py │ ├── pubnub │ └── requests ├── demo.py ├── dev.sh ├── ez_setup.py ├── screencast.gif ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── helpers.py ├── integration │ ├── __init__.py │ ├── test_client.py │ └── test_debugger.py └── unit │ ├── __init__.py │ └── test_client.py ├── tox.ini └── vendor └── pubnub ├── LICENSE └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/README.md -------------------------------------------------------------------------------- /bugbuzz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/bugbuzz/__init__.py -------------------------------------------------------------------------------- /bugbuzz/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/bugbuzz/client.py -------------------------------------------------------------------------------- /bugbuzz/debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/bugbuzz/debugger.py -------------------------------------------------------------------------------- /bugbuzz/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/bugbuzz/packages/__init__.py -------------------------------------------------------------------------------- /bugbuzz/packages/pubnub: -------------------------------------------------------------------------------- 1 | ../../vendor/pubnub -------------------------------------------------------------------------------- /bugbuzz/packages/requests: -------------------------------------------------------------------------------- 1 | ../../vendor/requests/requests -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/demo.py -------------------------------------------------------------------------------- /dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/dev.sh -------------------------------------------------------------------------------- /ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/ez_setup.py -------------------------------------------------------------------------------- /screencast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/screencast.gif -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/tests/integration/test_client.py -------------------------------------------------------------------------------- /tests/integration/test_debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/tests/integration/test_debugger.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/tests/unit/test_client.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/tox.ini -------------------------------------------------------------------------------- /vendor/pubnub/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/vendor/pubnub/LICENSE -------------------------------------------------------------------------------- /vendor/pubnub/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangpenlin/bugbuzz-python/HEAD/vendor/pubnub/__init__.py --------------------------------------------------------------------------------