A collection and persistance manager for blob stores like aws S3
Project description
An S3 persistence manager. If you squint closely enough you could even call it a database.
Goals
Lots of examples
Blob Storage as primary (S3, Ceph, Google Cloud Storage, etc.)
Concerns
Eventual Consistency
Speed
Constraints
Examples Using SSShelf
A URL Shortner ready for heroku https://github.com/voidfiles/ssshelf-url-shortener
Example
import asyncio
from datetime import datetime
import simpleflake
import json
from ssshelf.items import IManager
from ssshelf.collections import Collection
from ssshelf.utils import convert_datetime_to_str, json_dump
from ssshelf.managers import CManager
from ssshelf.storages.s3 import S3Storage
class Bookmark(IManager):
def get_pk(self, item):
return str(item['pk'])
def serialize_item(self, item):
return bytes(json_dump(item), 'utf8')
def deserialize_item(self, data):
return json.loads(data)
class AllBookmarks(Collection):
def get_pk(self, item):
return str(item['pk'])
def key(self, item):
return [
[convert_datetime_to_str(item['created_at'])]
]
class BookmarkManager(CManager):
item_manager = Bookmark()
every = AllBookmarks()
async def demo():
bookmark_manager = BookmarkManager(S3Storage())
bookmark = {
'pk': simpleflake.simpleflake(),
'link': 'http://google.com',
'created_at': datetime.utcnow()
}
await bookmark_manager.add_item(bookmark)
resp = await bookmark_manager.every.get_items()
assert resp['items'][0]['link'] == 'http://google.com'
loop = asyncio.get_event_loop()
loop.run_until_complete(demo())
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
ssshelf-0.1.0.tar.gz
(8.4 kB
view hashes)