├── .gitattributes ├── .nojekyll ├── LICENSE ├── README.md ├── README.rst ├── aws_logging_handlers ├── Kinesis │ └── __init__.py ├── S3 │ └── __init__.py ├── __init__.py ├── tasks │ └── __init__.py └── validation │ └── __init__.py ├── docs ├── .buildinfo ├── .nojekyll ├── _modules │ ├── Kinesis.html │ ├── S3.html │ └── index.html ├── _sources │ ├── index.rst.txt │ ├── kinesis │ │ ├── KinesisHandler.rst.txt │ │ ├── KinesisStream.rst.txt │ │ └── index.rst.txt │ └── s3 │ │ ├── S3Handler.rst.txt │ │ ├── S3Stream.rst.txt │ │ └── index.rst.txt ├── _static │ ├── ajax-loader.gif │ ├── alabaster.css │ ├── basic.css │ ├── comment-bright.png │ ├── comment-close.png │ ├── comment.png │ ├── custom.css │ ├── doctools.js │ ├── documentation_options.js │ ├── down-pressed.png │ ├── down.png │ ├── file.png │ ├── jquery-3.2.1.js │ ├── jquery.js │ ├── language_data.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── underscore-1.3.1.js │ ├── underscore.js │ ├── up-pressed.png │ ├── up.png │ └── websupport.js ├── genindex.html ├── index.html ├── kinesis │ ├── KinesisHandler.html │ ├── KinesisStream.html │ └── index.html ├── objects.inv ├── py-modindex.html ├── s3 │ ├── S3Handler.html │ ├── S3Stream.html │ └── index.html ├── search.html └── searchindex.js ├── r_docs ├── .gitignore ├── Makefile ├── _static │ ├── ajax-loader.gif │ ├── alabaster.css │ ├── basic.css │ ├── comment-bright.png │ ├── comment-close.png │ ├── comment.png │ ├── custom.css │ ├── doctools.js │ ├── documentation_options.js │ ├── down-pressed.png │ ├── down.png │ ├── file.png │ ├── jquery-3.2.1.js │ ├── jquery.js │ ├── language_data.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── underscore-1.3.1.js │ ├── underscore.js │ ├── up-pressed.png │ ├── up.png │ └── websupport.js ├── build │ ├── doctrees │ │ ├── environment.pickle │ │ ├── index.doctree │ │ ├── kinesis │ │ │ ├── KinesisHandler.doctree │ │ │ ├── KinesisStream.doctree │ │ │ └── index.doctree │ │ └── s3 │ │ │ ├── S3Handler.doctree │ │ │ ├── S3Stream.doctree │ │ │ └── index.doctree │ └── html │ │ ├── .buildinfo │ │ ├── .nojekyll │ │ ├── _modules │ │ ├── Kinesis.html │ │ ├── S3.html │ │ └── index.html │ │ ├── _sources │ │ ├── index.rst.txt │ │ ├── kinesis │ │ │ ├── KinesisHandler.rst.txt │ │ │ ├── KinesisStream.rst.txt │ │ │ └── index.rst.txt │ │ └── s3 │ │ │ ├── S3Handler.rst.txt │ │ │ ├── S3Stream.rst.txt │ │ │ └── index.rst.txt │ │ ├── _static │ │ ├── ajax-loader.gif │ │ ├── alabaster.css │ │ ├── basic.css │ │ ├── comment-bright.png │ │ ├── comment-close.png │ │ ├── comment.png │ │ ├── custom.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── down-pressed.png │ │ ├── down.png │ │ ├── file.png │ │ ├── jquery-3.2.1.js │ │ ├── jquery.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── underscore-1.3.1.js │ │ ├── underscore.js │ │ ├── up-pressed.png │ │ ├── up.png │ │ └── websupport.js │ │ ├── genindex.html │ │ ├── index.html │ │ ├── kinesis │ │ ├── KinesisHandler.html │ │ ├── KinesisStream.html │ │ └── index.html │ │ ├── objects.inv │ │ ├── py-modindex.html │ │ ├── s3 │ │ ├── S3Handler.html │ │ ├── S3Stream.html │ │ └── index.html │ │ ├── search.html │ │ └── searchindex.js ├── conf.py ├── index.html ├── index.rst ├── kinesis │ ├── KinesisHandler.rst │ ├── KinesisStream.rst │ └── index.rst ├── objects.inv └── s3 │ ├── S3Handler.rst │ ├── S3Stream.rst │ └── index.rst ├── setup.cfg ├── setup.py └── tests └── __init__.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/README.rst -------------------------------------------------------------------------------- /aws_logging_handlers/Kinesis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/aws_logging_handlers/Kinesis/__init__.py -------------------------------------------------------------------------------- /aws_logging_handlers/S3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/aws_logging_handlers/S3/__init__.py -------------------------------------------------------------------------------- /aws_logging_handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/aws_logging_handlers/__init__.py -------------------------------------------------------------------------------- /aws_logging_handlers/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/aws_logging_handlers/tasks/__init__.py -------------------------------------------------------------------------------- /aws_logging_handlers/validation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/aws_logging_handlers/validation/__init__.py -------------------------------------------------------------------------------- /docs/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/.buildinfo -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_modules/Kinesis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_modules/Kinesis.html -------------------------------------------------------------------------------- /docs/_modules/S3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_modules/S3.html -------------------------------------------------------------------------------- /docs/_modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_modules/index.html -------------------------------------------------------------------------------- /docs/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/_sources/kinesis/KinesisHandler.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_sources/kinesis/KinesisHandler.rst.txt -------------------------------------------------------------------------------- /docs/_sources/kinesis/KinesisStream.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_sources/kinesis/KinesisStream.rst.txt -------------------------------------------------------------------------------- /docs/_sources/kinesis/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_sources/kinesis/index.rst.txt -------------------------------------------------------------------------------- /docs/_sources/s3/S3Handler.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_sources/s3/S3Handler.rst.txt -------------------------------------------------------------------------------- /docs/_sources/s3/S3Stream.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_sources/s3/S3Stream.rst.txt -------------------------------------------------------------------------------- /docs/_sources/s3/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_sources/s3/index.rst.txt -------------------------------------------------------------------------------- /docs/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/_static/alabaster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/alabaster.css -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/comment-close.png -------------------------------------------------------------------------------- /docs/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/comment.png -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/doctools.js -------------------------------------------------------------------------------- /docs/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/down.png -------------------------------------------------------------------------------- /docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/file.png -------------------------------------------------------------------------------- /docs/_static/jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/jquery-3.2.1.js -------------------------------------------------------------------------------- /docs/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/jquery.js -------------------------------------------------------------------------------- /docs/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/language_data.js -------------------------------------------------------------------------------- /docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/minus.png -------------------------------------------------------------------------------- /docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/plus.png -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/underscore.js -------------------------------------------------------------------------------- /docs/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/up.png -------------------------------------------------------------------------------- /docs/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/_static/websupport.js -------------------------------------------------------------------------------- /docs/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/genindex.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/kinesis/KinesisHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/kinesis/KinesisHandler.html -------------------------------------------------------------------------------- /docs/kinesis/KinesisStream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/kinesis/KinesisStream.html -------------------------------------------------------------------------------- /docs/kinesis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/kinesis/index.html -------------------------------------------------------------------------------- /docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/objects.inv -------------------------------------------------------------------------------- /docs/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/py-modindex.html -------------------------------------------------------------------------------- /docs/s3/S3Handler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/s3/S3Handler.html -------------------------------------------------------------------------------- /docs/s3/S3Stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/s3/S3Stream.html -------------------------------------------------------------------------------- /docs/s3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/s3/index.html -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /r_docs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /r_docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/Makefile -------------------------------------------------------------------------------- /r_docs/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/ajax-loader.gif -------------------------------------------------------------------------------- /r_docs/_static/alabaster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/alabaster.css -------------------------------------------------------------------------------- /r_docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/basic.css -------------------------------------------------------------------------------- /r_docs/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/comment-bright.png -------------------------------------------------------------------------------- /r_docs/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/comment-close.png -------------------------------------------------------------------------------- /r_docs/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/comment.png -------------------------------------------------------------------------------- /r_docs/_static/custom.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /r_docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/doctools.js -------------------------------------------------------------------------------- /r_docs/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/documentation_options.js -------------------------------------------------------------------------------- /r_docs/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/down-pressed.png -------------------------------------------------------------------------------- /r_docs/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/down.png -------------------------------------------------------------------------------- /r_docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/file.png -------------------------------------------------------------------------------- /r_docs/_static/jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/jquery-3.2.1.js -------------------------------------------------------------------------------- /r_docs/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/jquery.js -------------------------------------------------------------------------------- /r_docs/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/language_data.js -------------------------------------------------------------------------------- /r_docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/minus.png -------------------------------------------------------------------------------- /r_docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/plus.png -------------------------------------------------------------------------------- /r_docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/pygments.css -------------------------------------------------------------------------------- /r_docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/searchtools.js -------------------------------------------------------------------------------- /r_docs/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /r_docs/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/underscore.js -------------------------------------------------------------------------------- /r_docs/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/up-pressed.png -------------------------------------------------------------------------------- /r_docs/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/up.png -------------------------------------------------------------------------------- /r_docs/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/_static/websupport.js -------------------------------------------------------------------------------- /r_docs/build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/doctrees/environment.pickle -------------------------------------------------------------------------------- /r_docs/build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/doctrees/index.doctree -------------------------------------------------------------------------------- /r_docs/build/doctrees/kinesis/KinesisHandler.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/doctrees/kinesis/KinesisHandler.doctree -------------------------------------------------------------------------------- /r_docs/build/doctrees/kinesis/KinesisStream.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/doctrees/kinesis/KinesisStream.doctree -------------------------------------------------------------------------------- /r_docs/build/doctrees/kinesis/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/doctrees/kinesis/index.doctree -------------------------------------------------------------------------------- /r_docs/build/doctrees/s3/S3Handler.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/doctrees/s3/S3Handler.doctree -------------------------------------------------------------------------------- /r_docs/build/doctrees/s3/S3Stream.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/doctrees/s3/S3Stream.doctree -------------------------------------------------------------------------------- /r_docs/build/doctrees/s3/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/doctrees/s3/index.doctree -------------------------------------------------------------------------------- /r_docs/build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/.buildinfo -------------------------------------------------------------------------------- /r_docs/build/html/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /r_docs/build/html/_modules/Kinesis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_modules/Kinesis.html -------------------------------------------------------------------------------- /r_docs/build/html/_modules/S3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_modules/S3.html -------------------------------------------------------------------------------- /r_docs/build/html/_modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_modules/index.html -------------------------------------------------------------------------------- /r_docs/build/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /r_docs/build/html/_sources/kinesis/KinesisHandler.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_sources/kinesis/KinesisHandler.rst.txt -------------------------------------------------------------------------------- /r_docs/build/html/_sources/kinesis/KinesisStream.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_sources/kinesis/KinesisStream.rst.txt -------------------------------------------------------------------------------- /r_docs/build/html/_sources/kinesis/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_sources/kinesis/index.rst.txt -------------------------------------------------------------------------------- /r_docs/build/html/_sources/s3/S3Handler.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_sources/s3/S3Handler.rst.txt -------------------------------------------------------------------------------- /r_docs/build/html/_sources/s3/S3Stream.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_sources/s3/S3Stream.rst.txt -------------------------------------------------------------------------------- /r_docs/build/html/_sources/s3/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_sources/s3/index.rst.txt -------------------------------------------------------------------------------- /r_docs/build/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /r_docs/build/html/_static/alabaster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/alabaster.css -------------------------------------------------------------------------------- /r_docs/build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/basic.css -------------------------------------------------------------------------------- /r_docs/build/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/comment-bright.png -------------------------------------------------------------------------------- /r_docs/build/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/comment-close.png -------------------------------------------------------------------------------- /r_docs/build/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/comment.png -------------------------------------------------------------------------------- /r_docs/build/html/_static/custom.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /r_docs/build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/doctools.js -------------------------------------------------------------------------------- /r_docs/build/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/documentation_options.js -------------------------------------------------------------------------------- /r_docs/build/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/down-pressed.png -------------------------------------------------------------------------------- /r_docs/build/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/down.png -------------------------------------------------------------------------------- /r_docs/build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/file.png -------------------------------------------------------------------------------- /r_docs/build/html/_static/jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/jquery-3.2.1.js -------------------------------------------------------------------------------- /r_docs/build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/jquery.js -------------------------------------------------------------------------------- /r_docs/build/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/language_data.js -------------------------------------------------------------------------------- /r_docs/build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/minus.png -------------------------------------------------------------------------------- /r_docs/build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/plus.png -------------------------------------------------------------------------------- /r_docs/build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/pygments.css -------------------------------------------------------------------------------- /r_docs/build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/searchtools.js -------------------------------------------------------------------------------- /r_docs/build/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /r_docs/build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/underscore.js -------------------------------------------------------------------------------- /r_docs/build/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/up-pressed.png -------------------------------------------------------------------------------- /r_docs/build/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/up.png -------------------------------------------------------------------------------- /r_docs/build/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/_static/websupport.js -------------------------------------------------------------------------------- /r_docs/build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/genindex.html -------------------------------------------------------------------------------- /r_docs/build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/index.html -------------------------------------------------------------------------------- /r_docs/build/html/kinesis/KinesisHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/kinesis/KinesisHandler.html -------------------------------------------------------------------------------- /r_docs/build/html/kinesis/KinesisStream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/kinesis/KinesisStream.html -------------------------------------------------------------------------------- /r_docs/build/html/kinesis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/kinesis/index.html -------------------------------------------------------------------------------- /r_docs/build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/objects.inv -------------------------------------------------------------------------------- /r_docs/build/html/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/py-modindex.html -------------------------------------------------------------------------------- /r_docs/build/html/s3/S3Handler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/s3/S3Handler.html -------------------------------------------------------------------------------- /r_docs/build/html/s3/S3Stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/s3/S3Stream.html -------------------------------------------------------------------------------- /r_docs/build/html/s3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/s3/index.html -------------------------------------------------------------------------------- /r_docs/build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/search.html -------------------------------------------------------------------------------- /r_docs/build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/build/html/searchindex.js -------------------------------------------------------------------------------- /r_docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/conf.py -------------------------------------------------------------------------------- /r_docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/index.html -------------------------------------------------------------------------------- /r_docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/index.rst -------------------------------------------------------------------------------- /r_docs/kinesis/KinesisHandler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/kinesis/KinesisHandler.rst -------------------------------------------------------------------------------- /r_docs/kinesis/KinesisStream.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/kinesis/KinesisStream.rst -------------------------------------------------------------------------------- /r_docs/kinesis/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/kinesis/index.rst -------------------------------------------------------------------------------- /r_docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/objects.inv -------------------------------------------------------------------------------- /r_docs/s3/S3Handler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/s3/S3Handler.rst -------------------------------------------------------------------------------- /r_docs/s3/S3Stream.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/s3/S3Stream.rst -------------------------------------------------------------------------------- /r_docs/s3/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/r_docs/s3/index.rst -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omrikiei/aws_logging_handlers/HEAD/tests/__init__.py --------------------------------------------------------------------------------