├── .gitignore ├── LICENSE ├── README.md ├── amazon_auth.py ├── licenses └── requests-LICENSE.txt ├── refresh.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | device_id 2 | tokens 3 | .vscode 4 | __pycache__ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrowaway2021/amazon_auth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrowaway2021/amazon_auth/HEAD/README.md -------------------------------------------------------------------------------- /amazon_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrowaway2021/amazon_auth/HEAD/amazon_auth.py -------------------------------------------------------------------------------- /licenses/requests-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrowaway2021/amazon_auth/HEAD/licenses/requests-LICENSE.txt -------------------------------------------------------------------------------- /refresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrowaway2021/amazon_auth/HEAD/refresh.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athrowaway2021/amazon_auth/HEAD/requirements.txt --------------------------------------------------------------------------------