├── .gitignore ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── README.rst ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── readme.rst └── usage.rst ├── glogcli ├── .gitignore ├── __init__.py ├── _version.py ├── cli.py ├── dateutils.py ├── formats.py ├── graylog_api.py ├── input.py ├── output.py └── utils.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── test_api.py ├── test_config.py ├── test_date_utils.py ├── test_formats.py └── test_input.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /glogcli/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /glogcli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/glogcli/__init__.py -------------------------------------------------------------------------------- /glogcli/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/glogcli/_version.py -------------------------------------------------------------------------------- /glogcli/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/glogcli/cli.py -------------------------------------------------------------------------------- /glogcli/dateutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/glogcli/dateutils.py -------------------------------------------------------------------------------- /glogcli/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/glogcli/formats.py -------------------------------------------------------------------------------- /glogcli/graylog_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/glogcli/graylog_api.py -------------------------------------------------------------------------------- /glogcli/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/glogcli/input.py -------------------------------------------------------------------------------- /glogcli/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/glogcli/output.py -------------------------------------------------------------------------------- /glogcli/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/glogcli/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_date_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/tests/test_date_utils.py -------------------------------------------------------------------------------- /tests/test_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/tests/test_formats.py -------------------------------------------------------------------------------- /tests/test_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/tests/test_input.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/glog-cli/HEAD/tox.ini --------------------------------------------------------------------------------