A Pythonic Interface to DynamoDB
Project description
A Pythonic interface for Amazon’s DynamoDB that supports Python 2 and 3.
DynamoDB is a great NoSQL service provided by Amazon, but the API is verbose. PynamoDB presents you with a simple, elegant API.
Useful links:
See the full documentation at http://pynamodb.readthedocs.org/
Ask questions at Google group
See release notes at http://pynamodb.readthedocs.org/en/latest/release_notes.html
Basic Usage
Create a model that describes your DynamoDB table.
from pynamodb.models import Model
from pynamodb.attributes import UnicodeAttribute
class UserModel(Model):
"""
A DynamoDB User
"""
table_name = 'dynamodb-user'
email = UnicodeAttribute(null=True)
first_name = UnicodeAttribute(range_key=True)
last_name = UnicodeAttribute(hash_key=True)
Now, search your table for all users with a last name of ‘Smith’ and whose first name begins with ‘J’:
for user in UserModel.query('Smith', first_name__begins_with='J'):
print(user.first_name)
Create a new user:
user = UserModel('John', 'Denver')
user.save()
Retrieve an existing user:
try:
user = UserModel.get('John', 'Denver')
print(user)
except UserModel.DoesNotExist:
print("User does not exist")
Advanced Usage
Want to use indexes? No problem:
from pynamodb.models import Model
from pynamodb.indexes import GlobalSecondaryIndex, AllProjection
from pynamodb.attributes import NumberAttribute, UnicodeAttribute
class ViewIndex(GlobalSecondaryIndex):
read_capacity_units = 2
write_capacity_units = 1
projection = AllProjection()
view = NumberAttribute(default=0, hash_key=True)
class TestModel(Model):
table_name = 'TestModel'
forum = UnicodeAttribute(hash_key=True)
thread = UnicodeAttribute(range_key=True)
view = NumberAttribute(default=0)
view_index = ViewIndex()
Now query the index for all items with 0 views:
for item in TestModel.view_index.query(0):
print("Item queried from index: {0}".format(item))
It’s really that simple.
Installation:
$ pip install pynamodb
or install the development version:
$ pip install git+https://github.com/jlafon/PynamoDB#egg=pynamodb
Features
Python 3 support
Python 2 support
An ORM-like interface with query and scan filters
Includes the entire DynamoDB API
Supports both unicode and binary DynamoDB attributes
Support for global secondary indexes, local secondary indexes, and batch operations
Provides iterators for working with queries, scans, that are automatically paginated
Automatic pagination for bulk operations
Complex queries
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pynamodb-0.1.13.tar.gz
.
File metadata
- Download URL: pynamodb-0.1.13.tar.gz
- Upload date:
- Size: 33.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70b43b552b7e697c41cf5105694232adef5ea3d83fb3d5daad5a3af7b1a00017 |
|
MD5 | fa52fe70f496b95085dec8c0af9a0e73 |
|
BLAKE2b-256 | eb13c053c88125cc4e18842d98ff9997e28b22705b6b3ae40845023fa4c2af1a |
File details
Details for the file pynamodb-0.1.13-py2.py3-none-any.whl
.
File metadata
- Download URL: pynamodb-0.1.13-py2.py3-none-any.whl
- Upload date:
- Size: 40.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 731af17ffb33da41e6359293dccc81d11a3a01399cd2636748efe7daebeb9d6d |
|
MD5 | 773aba220edcd93250f943bbf4dd7124 |
|
BLAKE2b-256 | e94ff7d2fdd60927d96bd8de76fea9b7bc5e358ecb97fc15916662be37e2640a |