├── .bumpversion.cfg ├── .env ├── .envrc ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .pylintrc ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── dynamo3 ├── __init__.py ├── batch.py ├── connection.py ├── constants.py ├── exception.py ├── fields.py ├── rate.py ├── result.py ├── testing.py ├── types.py └── util.py ├── requirements_dev.txt ├── requirements_test.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── test_fields.py ├── test_rate_limit.py ├── test_read.py └── test_write.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/.env -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | layout python 2 | -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/.pylintrc -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/README.rst -------------------------------------------------------------------------------- /dynamo3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/dynamo3/__init__.py -------------------------------------------------------------------------------- /dynamo3/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/dynamo3/batch.py -------------------------------------------------------------------------------- /dynamo3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/dynamo3/connection.py -------------------------------------------------------------------------------- /dynamo3/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/dynamo3/constants.py -------------------------------------------------------------------------------- /dynamo3/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/dynamo3/exception.py -------------------------------------------------------------------------------- /dynamo3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/dynamo3/fields.py -------------------------------------------------------------------------------- /dynamo3/rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/dynamo3/rate.py -------------------------------------------------------------------------------- /dynamo3/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/dynamo3/result.py -------------------------------------------------------------------------------- /dynamo3/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/dynamo3/testing.py -------------------------------------------------------------------------------- /dynamo3/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/dynamo3/types.py -------------------------------------------------------------------------------- /dynamo3/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/dynamo3/util.py -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- 1 | -r requirements_test.txt 2 | tox 3 | bump2version 4 | -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/requirements_test.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/tests/test_fields.py -------------------------------------------------------------------------------- /tests/test_rate_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/tests/test_rate_limit.py -------------------------------------------------------------------------------- /tests/test_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/tests/test_read.py -------------------------------------------------------------------------------- /tests/test_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/tests/test_write.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/dynamo3/HEAD/tox.ini --------------------------------------------------------------------------------