Giter Club home page Giter Club logo

dyno.py's Introduction

Dyno.py

A python client designed to work with AWS DynamoDB following the SingleTable schema model.

Ops

PutItem

This operation requires a partition key and optionally a sort key.

from dypy.db import SingleItem
import uuid


item = SingleItem(pk='[email protected]', sk=uuid.uuid4().hex, name='Frank')

Create a new Table instance, call the put method passing the SingleItem object to execute the operation.

...

response = Table('TableName').put(item)

Use the ok attribute to validate if the request was successful.

...

if response.ok:
    print("Item saved", item.data())

Secure PutItem

The SecureItem prevents items overwriting.

from dypy.db import SecureItem

item = SecureItem(pk='[email protected]', sk=uuid.uuid4().hex, name='Frank')
response = Table('TableName').put(item)

DynamoDB-JSON Parse

Convert JSON to DynamoJSON

Usage

# shell command
dynamojson --dump 'your.json' 'TableName' 
[
  {
    "uid": 1,
    "salt": "$2B$12$Pfsv3Tw6Rakclh/Ustdc3U",
    "media": { 
      "content": "/media1/live-radio-session-1.m3u8",
    }
  }
]

Dump:

{
  "TableName": [
    {
      "PutRequest": {
        "Item": {
          "uid": {
            "N": "1"
          },
          "salt": {
            "S": "$2B$12$Pfsv3Tw6Rakclh/Ustdc3U"
          },
          "media": {
            "M": {
              "content": {
                "S": "/media1/live-radio-session-1.m3u8"
              }
            }
          }
        }
      }
    }
  ]
}

dyno.py's People

Contributors

noize-e avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.