gitextract_8vvun9tj/ ├── .changes/ │ ├── 0.2.0.json │ ├── 0.2.1.json │ └── 0.2.2.json ├── .gitignore ├── .pylintrc ├── .travis.yml ├── CHANGELOG.rst ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── NOTICE.txt ├── README.rst ├── awsshell/ │ ├── __init__.py │ ├── app.py │ ├── autocomplete.py │ ├── awsshellrc │ ├── compat.py │ ├── config.py │ ├── data/ │ │ ├── cloudformation/ │ │ │ └── 2010-05-15/ │ │ │ └── completions-1.json │ │ ├── dynamodb/ │ │ │ └── 2012-08-10/ │ │ │ └── completions-1.json │ │ ├── ec2/ │ │ │ └── 2015-04-15/ │ │ │ └── completions-1.json │ │ ├── elb/ │ │ │ └── 2012-06-01/ │ │ │ └── completions-1.json │ │ ├── glacier/ │ │ │ └── 2012-06-01/ │ │ │ └── completions-1.json │ │ ├── iam/ │ │ │ └── 2010-05-08/ │ │ │ └── completions-1.json │ │ ├── kinesis/ │ │ │ └── 2013-12-02/ │ │ │ └── completions-1.json │ │ ├── opsworks/ │ │ │ └── 2013-02-18/ │ │ │ └── completions-1.json │ │ ├── s3/ │ │ │ └── 2006-03-01/ │ │ │ └── completions-1.json │ │ ├── sns/ │ │ │ └── 2010-03-31/ │ │ │ └── completions-1.json │ │ └── sqs/ │ │ └── 2012-11-05/ │ │ └── completions-1.json │ ├── db.py │ ├── docs.py │ ├── fuzzy.py │ ├── index/ │ │ ├── __init__.py │ │ └── completion.py │ ├── keys.py │ ├── lexer.py │ ├── loaders.py │ ├── makeindex.py │ ├── resource/ │ │ ├── __init__.py │ │ └── index.py │ ├── shellcomplete.py │ ├── style.py │ ├── substring.py │ ├── toolbar.py │ ├── ui.py │ └── utils.py ├── requirements-dev.txt ├── requirements-test.txt ├── scripts/ │ ├── ci/ │ │ ├── install │ │ ├── run-integ-tests │ │ └── run-tests │ └── new-change ├── setup.cfg ├── setup.py ├── tests/ │ ├── __init__.py │ ├── compat.py │ ├── integration/ │ │ ├── __init__.py │ │ ├── test_config.py │ │ ├── test_db.py │ │ ├── test_keys.py │ │ └── test_makeindex.py │ └── unit/ │ ├── __init__.py │ ├── index/ │ │ ├── __init__.py │ │ └── test_completions.py │ ├── test_app.py │ ├── test_autocomplete.py │ ├── test_docs.py │ ├── test_fuzzy.py │ ├── test_load_completions.py │ ├── test_makeindex.py │ ├── test_resources.py │ ├── test_substring.py │ ├── test_toolbar.py │ └── test_utils.py └── tox.ini