Skip to main content

Standalone DynamoDB client not hiding any feature

Project description

LowVoltage is a standalone Python (2.7+ and 3.4+) client for DynamoDB that doesn’t hide any feature of the API.

It’s licensed under the MIT license. It depends only on the excellent python-requests library. It’s available on the Python package index, its documentation is hosted by Python and its source code is on GitHub.

It’s currently in the beta stage, meaning I believe the interface will be faily stable but may still change if we have good reasons to do so. Please have a look to the changelog when updating between v0.x releases. I’ll do my best to respect semantic versioning.

Questions? Remarks? Bugs? Want to contribute? Open an issue!

https://img.shields.io/travis/jacquev6/LowVoltage/master.svg https://img.shields.io/coveralls/jacquev6/LowVoltage/master.svg https://img.shields.io/codeclimate/github/jacquev6/LowVoltage.svg https://img.shields.io/scrutinizer/g/jacquev6/LowVoltage.svg https://img.shields.io/pypi/dm/LowVoltage.svg https://img.shields.io/pypi/l/LowVoltage.svg https://img.shields.io/pypi/v/LowVoltage.svg https://img.shields.io/pypi/pyversions/LowVoltage.svg https://img.shields.io/pypi/status/LowVoltage.svg https://img.shields.io/github/issues/jacquev6/LowVoltage.svg https://badge.waffle.io/jacquev6/lowvoltage.png?label=ready&title=ready https://img.shields.io/github/forks/jacquev6/LowVoltage.svg https://img.shields.io/github/stars/jacquev6/LowVoltage.svg

Quick start

Install from PyPI:

$ pip install LowVoltage

Import the package and create a connection (assuming your AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY environment variables are set):

>>> from LowVoltage import *
>>> connection = Connection("us-west-2", EnvironmentCredentials())

Assuming you have a table named "LowVoltage.Tests.Doc.1" with a hash key on the number attribute "h", you can put an item and get it back:

>>> table = "LowVoltage.Tests.Doc.1"
>>> connection(PutItem(table, {"h": 0, "a": 42, "b": u"bar"}))
<LowVoltage.actions.put_item.PutItemResponse ...>
>>> connection(GetItem(table, {"h": 0})).item
{u'a': 42, u'h': 0, u'b': u'bar'}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

LowVoltage-0.7.3.tar.gz (57.4 kB view details)

Uploaded Source

File details

Details for the file LowVoltage-0.7.3.tar.gz.

File metadata

  • Download URL: LowVoltage-0.7.3.tar.gz
  • Upload date:
  • Size: 57.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for LowVoltage-0.7.3.tar.gz
Algorithm Hash digest
SHA256 03a5079b046862b653f3a46bbd8705369112ab44b0c3523a83bee2de78276cc0
MD5 043259380e00a9868415c77ea4463dac
BLAKE2b-256 96346c20ab948eeef73e7dced03a00a02aaa932f1a3ef8ca538caa0d6cf9bb94

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page