• Stars
    star
    380
  • Rank 109,236 (Top 3 %)
  • Language
    Python
  • Created about 7 years ago
  • Updated about 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

NoDB isn't a database.. but it sort of looks like one.

NoDB

Build Status Coverage PyPI Slack Gun.io Patreon

NoDB isn't a database.. but it sort of looks like one!

NoDB an incredibly simple, Pythonic object store based on Amazon's S3 static file storage.

It's useful for prototyping, casual hacking, and (maybe) even low-traffic server-less backends for Zappa apps!

Features

  • Schema-less!
  • Server-less!
  • Uses S3 as a datastore.
  • Loads to native Python objects with cPickle
  • Can use JSON as a serialization format for untrusted data
  • Local filestore based caching
  • Cheap(ish)!
  • Fast(ish)! (Especially from Lambda)

Performance

Initial load test with Goad of 10,000 requests (500 concurrent) with a write and subsequent read of the same index showed an average time of 400ms. This should be more than acceptable for many applications, even those which don't have sparse data, although that is preferred.

Installation

NoDB can be installed easily via pip, like so:

$ pip install nodb

Warning!

NoDB is insecure by default! Do not use it for untrusted data before setting serializer to "json"!

Usage

NoDB is super easy to use!

You simply make a NoDB object, point it to your bucket and tell it what field you want to index on.

from nodb import NoDB

nodb = NoDB("my-s3-bucket")
nodb.index = "name"

After that, you can save and load literally anything you want, whenever you want!

# Save an object!
user = {"name": "Jeff", "age": 19}
nodb.save(user) # True

# Load our object!
user = nodb.load("Jeff")
print(user['age']) # 19

# Delete our object
nodb.delete("Jeff") # True

By default, you can save and load any Python object.

Here's the same example, but with a class. Note the import and configuration is the same!

class User(object):
    name = None
    age = None
    
    def print_name(self):
        print("Hi, I'm " + self.name + "!")
    
    def __repr__(self):
        """ show a human readable representation of this class """
        return "<%s: %s (%s)>" % (self.__class__.__name__, self.name, self.age)

new_user = User()
new_user.name = "Jeff"
new_user.age = 19
nodb.save(new_user) 
# True

jeff = nodb.load("Jeff")
jeff.print_name() 
# Hi, I'm Jeff!

You can return a list of all objects using the .all() method.

Here's an example following from the code above, adding some extra users to the database and then listing all.

newer_user = User()
newer_user.name = "Ben"
newer_user.age = 38
nodb.save(newer_user)
# True

newest_user = User()
newest_user.name = "Thea"
newest_user.age = 33
nodb.save(newest_user)
# True

nodb.all()
# [<User: Jeff (19)>, <User: Ben (38)>, <User: Thea (33)>]

Advanced Usage

Different Serializers

To use a safer, non-Pickle serializer, just set JSON as your serializer:

nodb = NoDB()
nodb.serializer = "json"

Note that for this to work, your object must be JSON-serializable.

Object Metadata

You can get metainfo (datetime and UUID) for a given object by passing metainfo=True to load, like so:

# Load our object and metainfo!
user, datetime, uuid = nodb.load("Jeff", metainfo=True)

You can also pass in a default argument for non-existent values.

user = nodb.load("Jeff", default={}) # {}

Human Readable Indexes

By default, the indexes are hashed. If you want to be able to debug through the AWS console, set human_readable_indexes to True:

nodb.human_readable_indexes = True

Caching

You can enable local file caching, which will store previously retrieved values in the local rather than remote filestore.

nodb.cache = True

AWS settings override

You can override your AWS Profile information or boto3 session by passing either as a initial keyword argument.

nodb = NoDB(profile_name='my_aws_development_profile')
# or supply the session
session = boto3.Session(
    aws_access_key_id=ACCESS_KEY,
    aws_secret_access_key=SECRET_KEY,
    aws_session_token=SESSION_TOKEN,
)
nodb = NoDB(session=session)

TODO (Maybe?)

  • Tests with Placebo
  • Local file storage
  • Quering ranges (numberic IDs only), etc.
  • Different serializers
  • Custom serializers
  • Multiple indexes
  • Compression
  • Bucket management
  • Pseudo-locking
  • Performance/load testing

Related Projects

  • Zappa - Python's server-less framework!
  • K.E.V. - a Python ORM for key-value stores based on Redis, S3, and a S3/Redis hybrid backend.
  • s3sqlite - An S3-backed database engine for Django

Contributing

This project is still young, so there is still plenty to be done. Contributions are more than welcome!

Please file tickets for discussion before submitting patches. Pull requests should target master and should leave NoDB in a "shippable" state if merged.

If you are adding a non-trivial amount of new code, please include a functioning test in your PR. For AWS calls, we use the placebo library, which you can learn to use in their README. The test suite will be run by Travis CI once you open a pull request.

Please include the GitHub issue or pull request URL that has discussion related to your changes as a comment in the code (example). This greatly helps for project maintainability, as it allows us to trace back use cases and explain decision making.

License

(C) Rich Jones 2017, MIT License.


Made by Gun.io

More Repositories

1

Zappa

Serverless Python
Python
11,894
star
2

Glance-Bookmarklet

A Speed Reading Bookmarklet
JavaScript
1,557
star
3

SoundScrape

SoundCloud (and Bandcamp and Mixcloud) downloader in Python.
Python
1,393
star
4

lambda-packages

Various popular python libraries, pre-compiled to be compatible with AWS Lambda
Shell
732
star
5

Loop

UNIX's missing `loop` command
Rust
664
star
6

dnd-tldr

Dungeons and Dragons - Too Long; Didn't Read
609
star
7

DirtyShare

Peer to Peer Filesharing in Pure Javascript With Node.js and Socket.io
JavaScript
487
star
8

django-zappa

THIS PROJECT IS DEPRECATED, GO HERE INSTEAD:
Python
470
star
9

chords2midi

Create MIDI files from numerical chord progressions!
Python
341
star
10

Android-SDK-Samples

GitHub mirror of the Android SDK Samples. API version 17.
Java
300
star
11

omnihash

Hash files, strings, input streams and network resources in various common algorithms simultaneously
Python
253
star
12

Glance

Good reads, extremely fucking fast.
JavaScript
239
star
13

Minicraft

Minicraft and Minicraft for Android
220
star
14

django-easy-timezones

Easy timezones for Django based on GeoIP
Python
203
star
15

Mackenzie

AWS Lambda Infection Toolkit // Persistent Lambda Malware PoC
161
star
16

zappa-django-utils

A handy Django application to supercharge your Zappa deployments.
Python
144
star
17

NodeDeploy

Example scripts for deploying a Node.js application behind a Node proxy alongside Apache/Nginx, as a demon which restarts automatically upon crashing.
JavaScript
130
star
18

Helix

Engineering Consciousness
JavaScript
125
star
19

live_json

LiveJSON - LiveView for JSON
JavaScript
107
star
20

RJModules

Various modules for VCV Rack
C++
98
star
21

flask-zappa

Serverless Flask on AWS Lambda + API Gateway
Python
87
star
22

WhitespaceBot

Making GitHub Better.. With Robots
Python
79
star
23

ADGMaker

Create Ableton Live Instruments from Philharmonia Samples
Smarty
68
star
24

UltimateTemplate

Ultimate Ableton Live Starter Template(s)
67
star
25

django-knockout-modeler

Super simple knockout.js ModelView templates for you Django models
Python
52
star
26

zappa-bittorrent-tracker

An experimental server-less BitTorrent tracker. Powered by Zappa, Flask and (DynamoDB or S3).
Python
44
star
27

FriendlyID

FriendlyID is an Elixir package that creates unique(-ish) friendly, human-readable identifiers for your objects.
Elixir
40
star
28

Zappa-CMS

A tiny serverless CMS for busy hackers.
HTML
39
star
29

Hash-Identifier

GitHub Mirror of Hash-Identifier
Python
35
star
30

XSS-Harvest

XSS Weaponization
Perl
34
star
31

LightWrite

Online WriteRoom Clone
JavaScript
33
star
32

Fashion

Pythonic OpenFaaS. aka `python-openfaas`.
Python
33
star
33

zappa-slack-inviter

A server-less Slack inviter
HTML
33
star
34

OnionCloud

OnionCloud - An Anonymous Heroku-like PaaS
33
star
35

HitStarter

Anonymous Crowdfunding. BitCoin. Tor. You figure it out.
Python
32
star
36

Emo

Command line emoji search. 🙏 🔥
Python
29
star
37

JonesComplexity

Per-line complexity for Flake8
Python
29
star
38

easy-expressions

Easy Regular Expressions for Python
Python
24
star
39

HerokuFreeProxy

A very very very very simple web proxy that runs on the Heroku free tier. Written in 2 minutes.
Python
22
star
40

OpenWatch---Android

OpenWatch Client for Android
Java
20
star
41

Seek

Search the internet from your terminal. Speed read your results. Terminal nirvana.
Python
20
star
42

zappa-blog

A blog about Zappa, powered by Zappa. Zappa zappa zappa. Zappa.
HTML
17
star
43

VitalPresets

My Vital Presets for Vital Synth. Bass music, trap, drum and bass, IDM, wubs, wobbles, swooshes, fizzles, stomps and woops.
17
star
44

Vape

COMMAND LINE AESTHETIC GENERATOR
Python
17
star
45

WebP2P.org

The static pages from WebP2P.org
JavaScript
16
star
46

Zalgo

Ç͍̝͍͍͍͙͍͕͍͍͍̈́ͣͩo̴̵̧̧͍͍͍͍͍͈͍͍͍͍͍͍̻͍͍͍͍͍͍͍͍͍͍͍͍͍͕͍͍͂̈̾̀͐̌ͤ̈ͪ̌ͦͪ̚͢͝͠͡ͅm̵̶̢͍͍͍͍͍͍̪͍͍͍͍͍͍̤͍̬͍͍̯͍̳͍͍͍͍͙͍͍͍͍ͮ̃̂ͨͯ͑͂ͭ̏͌́̕҉̢̨͍͍̱͍͍͍͍͍͎͍͍͍͍̣͍͍͍͍̤͍͍͍̫͍̜͍̿̊͒ͤ̏͌ͧ͝͝m͍͚͍͍͍͍͍͍̂ͧ̾ͬ͡a͍͏͍͍͋n͍̣͍͙͍͍̣͍͍̫͍̠͍̯͍͍͍͍ͦ̃̄̚̕d͍͍͍̣͍͍͍͍ͥͮ͊ͯ͠ ̡͍̖͍͍͍̝͍͍̺͍͍̺͍͍̞͍̟͍͍͍͍̳͍̭͍͍ͪ̾̉ͨ͂̂͘ͅ҈̸̧͍̝͍͍̰͍̬͍͍͍͍͍ͯ͟͡l̵͍̯͍͍͍͍̩͍͍̥͍͍͍̰͍̠͍͍͚͍͍͍͍̥͍͍̻͍͍͍͍͍͍̄ͯ́͒̒ͭ͂̏̽͞͠ i̴̷͍͍͍͍͍͍̰͍ͫ͑͝҈̴͍͍͍͍͍͍͍̜͍̘͍͍͍͍͍͆̿ͯ͋̆ͦ͋ͣ̆n͍͕͍̦͍͍ͅ͏̴͍̱͍͍͍͍̲͍͚͍͗̀e̢̧̡͍̖͍͍͍̟͍͕͍͍͍͍͍͍͍̱͍̟͍͍͍͍͍͍̻͍͍͍̠͍͍̖͍̅̓̊̅̂ͣ̀̽͆̅͘͜͠҉̴̷̶͍͍͍͙͍͍͍͍͍̰͍̫͍͍̜͍̱͍͍̘͍͍̙͍͍̫͍͇͍͍͍͍͍̲͍́̅͛̏̃̏ͥ̅ͨ́͝ ̴͍͍͍͍͍͍͍̯͍͍̜͍͍̙͍͍͍͍͍͓͍̹͍͍͍͍͍̲͍͍͍͉͍͍͍͍͍͍͍͍̦͍͚͍̣͍͍͍͍͍͉͍̦͍̰͍͍͍͍͍͍̃ͬͣ͋̾ͦͤ́ͦ̈̄͋̑ͪ̌ͫ̎̄͋̈ͨ̆ͩͥ̍͘̚̚̕͢͟͜͠z͍͍̠͍͍͍̥͍͍̠͍̀̉ͬ̕ą̴̸̴̡̛͍̜͍͍͍͍͎͍͍͍͍͍͍͍͍͍̗͍͍͍͍͍͍͍͍͍̠͍͈͍͍͍͍͍͍͍͍̮͍͍͍͍͍͍͍͍͍͍͍͍̮͍̪͍̍͐̇ͨͤ̈ͦ͋̽̋ͦͦ͋̍̒ͥ̉͂̿̑͊̇͂͢͟͟͢͜͡͠͝҉͍̬͍l̴̶̨̢̧̧͍̭͍͍͍͍͈͍͍͍͍͉͍̞͍͍͍͍͍͍͍͍͍̘͍͉͍̙͍͍̜͍͍͍͍͍̞͍͓͍͍̘͍͍͍͍͍͍͍͍̳͍͍͍͍͍̲͍͍̺͍͆̋ͧͣ͊̒̽͆ͬ̀͌ͥ́̈́̒ͭ̔̽̽̚͜͢͝ͅ҉͍͍̣͍͍̓͋ĝ͍͍͍̬͍͍͍̱͍ͭ̾͛҈̡͍̤͍͍͍͍͇͍͓͍͍͍̼͍͍̼͍͕͍͍̋̀̒ͪ͟͡o̶͍͍͍͍̖͍͍͍͍͍̙͍̰͍͍͍̘͍͍͍̤͍͇͍͖͍͍͋ͯͦ́̆̾̑ͮ̏̆͝.͍͍͋҉͍͍͍͍̱͍͍͍͆͐͒͐͢͏̡͍͍͈͍͍̩͍͍͍͍͍͍̥͍̯͍̺͍̣͍͍͍͍͍̠͍̗͍͍͍͍͍͍̘͍͍͍̅̔̋ͧ͂ͫ̒ͭ͊ͫ̓͊͌͆̔̕͝ͅ
Python
16
star
47

nogoogle

An easy way to remove Google from your life.
Python
15
star
48

Blaccupy

Black out your website to protest SOPA/PIPA
JavaScript
15
star
49

django-aws-billing

Django AWS Usage/Billing Package.
Python
15
star
50

SynthRecipies

Random Serum Patches
14
star
51

django-easy-split

Easy split testing for Django.
Python
14
star
52

Exploitable

A Django application full of security holes for instructional purposes
JavaScript
14
star
53

OpenWatch

OpenWatch.net code - Code for the client-side applications is available in my other repositories.
Python
14
star
54

Talks

A random, incomplete assortment of presentations
HTML
13
star
55

Poop

The internet is covered in 💩. Avoid it.
JavaScript
12
star
56

Youtube-Upload

GitHub Mirror of youtube-upload
12
star
57

CitizenMediaNotary

Citizen Media Notary creates notarized temporal records for citizen media.
JavaScript
12
star
58

django-easy-api

Give your website an API by changing a single line of code!
Python
11
star
59

ClickFraudBot

"If It's Digital, It Can Be Automated" ~ Tim Hwang
Python
11
star
60

django-welcome

Send welcome emails to new users and send notifications about new users to admins.
Python
11
star
61

b64img

Command line Base-64 image converter.
Python
10
star
62

Kaikai

Kaikai is like Bootstrap for WebVR projects. Let's have a Kaikai!
HTML
10
star
63

Anomos

Anomos Github Mirror
Python
10
star
64

serverless-imagehost

Serverless thumbnailing service with Zappa and Flask
Python
10
star
65

Trapify

KЄЄⱣ ΫØṲЯ ϾØMM∆ИƉ ⱢỊИЄ ₮ЯỊⱢⱢ, ₣∆M
Python
10
star
66

FreeScrub

A F/OSS metadata scrubber supporting PNG, PDF, TIFF, and JPEG files (with more to come!)
Python
9
star
67

stund

GitHub Mirror of stund
C++
8
star
68

LucidDreamBot

A Twitter bot to remind you to question reality. #onehourproject
Python
7
star
69

Cop-Recorder-2

Audio only version of the OpenWatch Android client. Sequel to Cop Recorder app
Java
7
star
70

ableton-backup

Backups of my Ableton Doodles. Not for you.
7
star
71

GrooveMac

A GrooveDown package for OSX
6
star
72

Tsunami

An Experimental BitTorrent Client. Ignore this for now.
JavaScript
6
star
73

progress.js

Towards an effort into making the internet into a progressive activist force. Simple, embeddable open source tools for progressive webmasters.
6
star
74

Karla

A Pen and Paper Game of Espionage
6
star
75

Voice-Dropbox

Asterisk Configuration to make a VoIP/PSTN Dropbox which integrates with OpenWatch.net
Python
6
star
76

kademlia.js

A Pure JavaScript Implementation of Kademlia. Towards a Decentralized WebDHT!
5
star
77

Spry

Spry is a slightly enhanced `pry` for Elixir
Elixir
5
star
78

Detour

GitHub mirror of Jann Horn's Detour
C
5
star
79

RELIC

Regular Expressions Legislative Information Council
Python
5
star
80

pyglance

A Glance client and library for python for terminal speed reading.
Python
5
star
81

Spheres

Online Photosphere viewer and host.
HTML
5
star
82

gitlog

Show nicely formatted Git histories for multiple repositories for any given author.
Python
4
star
83

Android-Pay-What-You-Want

A library that lets you add Pay-What-You-Want donations to your project.
Java
4
star
84

simpleaws

A simpler way to create multi-user access on AWS. Built with Boto.
Python
4
star
85

LaunchBoard

Guitar Mapping for the Novatation LaunchPad in Ableton Live
4
star
86

LectureLeaks---Android

LectureLeaks Android Client
Java
4
star
87

Gunio-Android-Client

An Android app for Gun.io
Java
4
star
88

Autopan

BX$$ Autopan is a VST that automatically pans a signal back and forth between left and right channels.
4
star
89

django-devsafe

Safely work with a production database in an insecure environment
Python
4
star
90

UniShare

UniShare - the engine behind NotesHub.org. A product of Students for Free Culture (freeculture.org)
JavaScript
4
star
91

Krasha

Crash Generation for Android. I made this in because I needed it. I don't know why anybody else would ever need this but what the hell, here it is.
Java
4
star
92

EOP945

Python Audio Squisher and Cut-up Maker
Python
3
star
93

DJMichael5000Botts

Auto-chopper and screwer in Python
Python
3
star
94

UppercaseMaker

Part of a Python Tutorial
Python
3
star
95

aDose

Brain Entrainment for Android. (Legacy Code)
Java
3
star
96

CrowdMap

A project to geospatially map the IP address space of international telecommunication companies
Java
3
star
97

OnionRTC

Experiments in using WebRTC over Tor. Nothing to see here yet.
Python
3
star
98

Chrominance

MIDI Visualizer
Python
3
star
99

Crusher

Inline PNG Crushing
Shell
3
star
100

Stretches

Imagine one instant of a song, expanded to the size of the universe.
3
star