Metadata-Version: 1.0
Name: dynash
Version: 0.6.8
Summary: Command line client for DynamoDB
Home-page: https://github.com/raff/dynash
Author: Raffaele Sena
Author-email: raff367@gmail.com
License: MIT
Description: dynash
        ======
        
        A simple "shell" to access DynamoDB via "boto".
        
        You can create/delete/list/describe tables, add/modify/delete/list records and more.
        
        - ls: list tables
        
        - create {tablename}: create table
        
        - delete {tablename}: delete table
        
        - describe {tablename}: describe table
        
        - capacity {tablename} {read_capacity} {write_capacity}: update table capacity
        
        - use {tablename}: select table
        
        - scan/l: list table content
        
        - get {id}: get item(s) from table
        
        - put {id} {properties}: add item to table
        
        - update {id} {properties}: update item
        
        - rm {id}: remove item from table
        
        - query/q: query table 
        
        and many more (use 'help' to find the available commands)
        
        ### Note:
        
        - Credentials should be in your .boto config file (see http://docs.pythonboto.org/en/latest/boto_config_tut.html)
        
        - Item related commands use the currently selected table (see 'use' command) but you can pass a table name as first parameter prefixed by ':'
         
        - Command completion is enabled (and it will complete table names)
        
        - You can set various flags (like debug, verbose, pretty-print, etc.) using the 'set' command (try 'set -l')k
        
        - You can redirect the output of commands using standard shell redirection ( > outfile )
        
        - You can execute shell commands using '!shell command'
        
        
Platform: Posix; MacOS X; Windows
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
