├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── example-project ├── README.md └── example-project.py ├── logtail ├── __init__.py ├── compat.py ├── flusher.py ├── formatter.py ├── frame.py ├── handler.py ├── helpers.py └── uploader.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── test-requirements.txt ├── tests ├── __init__.py ├── test_flusher.py ├── test_formatter.py ├── test_frame.py ├── test_handler.py ├── test_helpers.py └── test_uploader.py └── tox.ini /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/README.md -------------------------------------------------------------------------------- /example-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/example-project/README.md -------------------------------------------------------------------------------- /example-project/example-project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/example-project/example-project.py -------------------------------------------------------------------------------- /logtail/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/logtail/__init__.py -------------------------------------------------------------------------------- /logtail/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/logtail/compat.py -------------------------------------------------------------------------------- /logtail/flusher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/logtail/flusher.py -------------------------------------------------------------------------------- /logtail/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/logtail/formatter.py -------------------------------------------------------------------------------- /logtail/frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/logtail/frame.py -------------------------------------------------------------------------------- /logtail/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/logtail/handler.py -------------------------------------------------------------------------------- /logtail/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/logtail/helpers.py -------------------------------------------------------------------------------- /logtail/uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/logtail/uploader.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.18.4 2 | msgpack>=0.5.6 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | coverage>=3.7.1 2 | httpretty>=0.9.4 3 | nose-py3 4 | mock>=1.0.1 5 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_flusher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/tests/test_flusher.py -------------------------------------------------------------------------------- /tests/test_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/tests/test_formatter.py -------------------------------------------------------------------------------- /tests/test_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/tests/test_frame.py -------------------------------------------------------------------------------- /tests/test_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/tests/test_handler.py -------------------------------------------------------------------------------- /tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/tests/test_helpers.py -------------------------------------------------------------------------------- /tests/test_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/tests/test_uploader.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtail/logtail-python/HEAD/tox.ini --------------------------------------------------------------------------------