Metadata-Version: 2.1
Name: LucidDynamodb
Version: 1.0.54
Summary: A simple Python wrapper to AWS Dynamodb
Home-page: https://github.com/dineshsonachalam/Lucid-Dynamodb
Author: Dinesh Sonachalam
Author-email: dineshsonachalam@gmail.com
License: MIT
Keywords: python dynamodb amazon
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.1
Requires-Dist: boto3 (>=1.17.78)
Requires-Dist: botocore (>=1.20.78)
Requires-Dist: simplejson (==3.17.2)

Lucid DynamoDB:
===============

A simple python wrapper to AWS DynamoDB.

==== ==================== ================================ =======
S.No Functions            Description                      Status
==== ==================== ================================ =======
1    create_table         Create a new table if not exists Done
2    delete_table         Delete a table                   Done
3    read_all_table_names List out all the table names     Done
4    create_item          Create a new item                Done
5    delete_item          Delete items by filter           Done
6    read_item            Read an item                      Backlog
7    read_all_item        Read all item                    Backlog
8    read_items_by_filter Read items by filter             Backlog
9    update_item          Update an item by filter         Backlog
==== ==================== ================================ =======

Pypi package: https://pypi.org/project/LucidDynamodb/1.0.0/

