gitextract_6pfg9wew/ ├── .github/ │ └── pull_request_template.md ├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── Dockerfile ├── LICENSE.txt ├── README.md ├── athenacli/ │ ├── __init__.py │ ├── athenaclirc │ ├── clibuffer.py │ ├── clistyle.py │ ├── clitoolbar.py │ ├── compat.py │ ├── completer.py │ ├── completion_refresher.py │ ├── config.py │ ├── key_bindings.py │ ├── lexer.py │ ├── main.py │ ├── packages/ │ │ ├── __init__.py │ │ ├── completion_engine.py │ │ ├── filepaths.py │ │ ├── format_utils.py │ │ ├── literals/ │ │ │ ├── __init__.py │ │ │ ├── literals.json │ │ │ └── main.py │ │ ├── parseutils.py │ │ ├── prompt_utils.py │ │ ├── special/ │ │ │ ├── __init__.py │ │ │ ├── dbcommands.py │ │ │ ├── favoritequeries.py │ │ │ ├── iocommands.py │ │ │ ├── main.py │ │ │ └── utils.py │ │ └── tabular_output/ │ │ ├── __init__.py │ │ └── sql_format.py │ ├── sqlexecute.py │ └── style.py ├── changelog.md ├── docs/ │ ├── Makefile │ ├── awsconfig.rst │ ├── conf.py │ ├── develop.rst │ ├── faq.rst │ ├── features.rst │ ├── index.rst │ ├── install.rst │ └── usage.rst ├── examples/ │ └── create_table.sql ├── release.py ├── requirements-dev.txt ├── setup.cfg ├── setup.py ├── test/ │ ├── test_completion_engine.py │ ├── test_completion_refresher.py │ ├── test_dbspecial.py │ ├── test_format_utils.py │ ├── test_naive_completion.py │ ├── test_parseutils.py │ └── test_prompt_utils.py └── tox.ini