mirror of
https://github.com/sprockets/sprockets.clients.dynamodb.git
synced 2024-11-23 19:29:51 +00:00
16 lines
363 B
Python
16 lines
363 B
Python
try:
|
|
from .connector import DynamoDB
|
|
except ImportError as error:
|
|
def DynamoDB(*args, **kwargs):
|
|
raise error
|
|
|
|
version_info = (0, 3, 2)
|
|
__version__ = '.'.join(str(v) for v in version_info)
|
|
|
|
# Response constants
|
|
TABLE_ACTIVE = 'ACTIVE'
|
|
TABLE_CREATING = 'CREATING'
|
|
TABLE_DELETING = 'DELETING'
|
|
TABLE_DISABLED = 'DISABLED'
|
|
TABLE_UPDATING = 'UPDATING'
|
|
|