fdbk-dynamodb-plugin

DynamoDB plugin for fdbk


License
MIT
Install
pip install fdbk-dynamodb-plugin==0.0.3

Documentation

fdbk_dynamodb_plugin

Build Status

AWS Dynamo DB wrapper for fdbk.

Installation

Run:

pip install fdbk_dynamodb_plugin

to install from PyPI or download this repository and run

python setup.py install

to install from sources.

Testing

Check and automatically fix formatting with:

pycodestyle fdbk_dynamodb_plugin
autopep8 -aaar --in-place fdbk_dynamodb_plugin

Run static analysis with:

pylint -E --enable=invalid-name,unused-import,useless-object-inheritance fdbk_dynamodb_plugin

Run unit tests with command:

python3 -m unittest discover -s tst/

Get test coverage with commands:

coverage run --branch --source fdbk_dynamodb_plugin/ -m unittest discover -s tst/
coverage report -m