CrankDB python database driver.
Project description
Cranky (CrankDB Python Driver)
Cranky is the database driver for CrankDB for python applications.
Pre requisites
Setup CrankDB and get it started.
Documentation
from cranky import Cranky
# setup a new connection
conn = Cranky(host="localhost", port="9876") # default values
# Cranky follows almost similar API methods as Crank CLI.
# You can set any type of JSON seriable value at any key.
conn.set(key, value)
# Get a key
conn.get(key)
# Returns a DataPacket object with `dataType` attribute and corresponding value field `jsonVal`, `stringVal`, etc.
# Find multiple JSON documents using Find
conn.find({key: value}) #Applies a search and returns every key having JSON obj with key=value.
# Returns a list of DataPackets with dataType and jsonVal attributes.
conn.find({}) # returns all JSON (dict) type key values.
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
cranky-0.1.0b2.tar.gz
(7.6 kB
view hashes)
Built Distribution
cranky-0.1.0b2-py3-none-any.whl
(11.7 kB
view hashes)