├── .coveragerc ├── .github ├── issue_template.md ├── pull_request_template.md └── workflows │ ├── pythonpackage.yml │ └── pythonpublish.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── pysqs_extended_client ├── SQSClientExtended.py ├── __init__.py └── config.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py └── test_pysqs_extended_client.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothymugayi/boto3-sqs-extended-client-lib/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothymugayi/boto3-sqs-extended-client-lib/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothymugayi/boto3-sqs-extended-client-lib/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/pythonpackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothymugayi/boto3-sqs-extended-client-lib/HEAD/.github/workflows/pythonpackage.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothymugayi/boto3-sqs-extended-client-lib/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothymugayi/boto3-sqs-extended-client-lib/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothymugayi/boto3-sqs-extended-client-lib/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothymugayi/boto3-sqs-extended-client-lib/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothymugayi/boto3-sqs-extended-client-lib/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include CHANGELOG.rst README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothymugayi/boto3-sqs-extended-client-lib/HEAD/README.md -------------------------------------------------------------------------------- /pysqs_extended_client/SQSClientExtended.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothymugayi/boto3-sqs-extended-client-lib/HEAD/pysqs_extended_client/SQSClientExtended.py -------------------------------------------------------------------------------- /pysqs_extended_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothymugayi/boto3-sqs-extended-client-lib/HEAD/pysqs_extended_client/__init__.py -------------------------------------------------------------------------------- /pysqs_extended_client/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothymugayi/boto3-sqs-extended-client-lib/HEAD/pysqs_extended_client/config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothymugayi/boto3-sqs-extended-client-lib/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothymugayi/boto3-sqs-extended-client-lib/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothymugayi/boto3-sqs-extended-client-lib/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_pysqs_extended_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothymugayi/boto3-sqs-extended-client-lib/HEAD/tests/test_pysqs_extended_client.py --------------------------------------------------------------------------------