Kenneth Reitz 9e013cf29c fix description
2012-06-09 06:19:06 -04:00
2012-06-09 06:07:52 -04:00
2012-06-09 03:32:43 -04:00
2012-06-09 03:32:47 -04:00
2012-06-09 06:11:06 -04:00
2012-06-09 06:14:32 -04:00
2012-06-09 06:19:06 -04:00

Dynamo: Simple DynamoDB API
===========================

This module allows you to interact with DynamoDB much like a native Python dictionary.


Usage
-----

::

    import dynamo

    ACCESS_KEY = 'XXXXXX'
    SECRET_ACCESS_KEY = 'XXXXXX/XXXXXXXXX+XXXXXXX'
    TABLE_NAME = 'XXXXX'

    table = dynamo.table(TABLE_NAME, (ACCESS_KEY, SECRET_ACCESS_KEY))


Writing is simple::

    table['new-key']['key'] = ['value']

So is reading::

    >>> table['existing-key']['attribute']
    'value'


Installation
------------

Installing dynamo is simple with pip:

::

    $ pip install dynamo
S
Description
No description provided
Readme ISC 42 KiB
Languages
Python 100%