Metadata-Version: 2.1
Name: aws-cognito-cli
Version: 0.1.3
Summary: A simple CLI tool to get the AWS Cognito Access Token
Home-page: https://github.com/joeyism/aws_cognito_cli
Author: joeyism
Author-email: joeyism101@gmail.com
License: Apache Software License 2.0
Keywords: aws-cognito-cli
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: AUTHORS.rst
Requires-Dist: boto3 (==1.26.105)
Requires-Dist: botocore (==1.29.105)
Requires-Dist: certifi (==2022.12.7)
Requires-Dist: cffi (==1.15.1)
Requires-Dist: charset-normalizer (==3.1.0)
Requires-Dist: cryptography (==38.0.4)
Requires-Dist: ecdsa (==0.18.0)
Requires-Dist: envs (==1.4)
Requires-Dist: future (==0.18.3)
Requires-Dist: idna (==3.4)
Requires-Dist: jmespath (==1.0.1)
Requires-Dist: pyasn1 (==0.4.8)
Requires-Dist: pycparser (==2.21)
Requires-Dist: pycryptodome (==3.3.1)
Requires-Dist: python-dateutil (==2.8.2)
Requires-Dist: python-jose (==3.3.0)
Requires-Dist: python-jose-cryptodome (==1.3.2)
Requires-Dist: requests (==2.28.2)
Requires-Dist: rsa (==4.9)
Requires-Dist: s3transfer (==0.6.0)
Requires-Dist: six (==1.16.0)
Requires-Dist: urllib3 (==1.26.15)
Requires-Dist: warrant (==0.6.1)

# AWS Cognito CLI
A simple CLI tool to get the AWS Cognito Access Token, because it's currently far more complicated than it needs to be

## Installation
```bash
pip install aws-cognito-cli
```

## Usage
```
usage: aws-cognito-cli [-h] -u USERNAME -p PASSWORD --pool-id POOL_ID --client-id CLIENT_ID
```

### Example Usage
```bash
aws-cognito-cli -u joeyism -p somePassword --pool-id us-east-1_abc123 --client-id ABCDEFGHIJKLMN1234567890
```

## Future Features
* Cache pool id and client id
* Read info from env
* Add CI/CD


## Documentation
* Free software: Apache Software License 2.0
* Documentation: https://aws-cognito-cli.readthedocs.io.


## Credits
This package was created with Cookiecutter and the `audreyr/cookiecutter-pypackage` project template.

* [Cookiecutter](https://github.com/audreyr/cookiecutter)
* [audreyr/cookiecutter-pypackage](https://github.com/audreyr/cookiecutter-pypackage)


=======
History
=======

1.0.0 (2022-11-19)
------------------

* First release on PyPI.
