gitextract_w3wj90cw/ ├── .github/ │ └── workflows/ │ ├── pythonpackage.yml │ ├── pythonrelease.yml │ └── rstlint.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── Dockerfile.python2 ├── LICENSE.txt ├── README.rst ├── aws_google_auth/ │ ├── __init__.py │ ├── _version.py │ ├── amazon.py │ ├── configuration.py │ ├── google.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── google_error.html │ │ ├── saml-response-expired-before-valid.xml │ │ ├── saml-response-no-expire.xml │ │ ├── saml-response-too-late.xml │ │ ├── saml-response-too-soon.xml │ │ ├── test_amazon.py │ │ ├── test_args_parser.py │ │ ├── test_backwards_compatibility.py │ │ ├── test_config_parser.py │ │ ├── test_configuration.py │ │ ├── test_configuration_persistence.py │ │ ├── test_google.py │ │ ├── test_init.py │ │ ├── test_python_version.py │ │ ├── test_util.py │ │ ├── too-many-commas.xml │ │ └── valid-response.xml │ ├── u2f.py │ └── util.py ├── requirements.txt └── setup.py