├── .github └── workflows │ └── python-test.yml ├── .gitignore ├── README.md ├── middleware_s3.py └── tests └── test_headers.py /.github/workflows/python-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waderobson/s3-auth/HEAD/.github/workflows/python-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waderobson/s3-auth/HEAD/README.md -------------------------------------------------------------------------------- /middleware_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waderobson/s3-auth/HEAD/middleware_s3.py -------------------------------------------------------------------------------- /tests/test_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waderobson/s3-auth/HEAD/tests/test_headers.py --------------------------------------------------------------------------------