Skip to main content

simple nosql over sqlite

Project description

noqlite

simple nosql over sqlite

install

pip install noqlite

usage

from noqlite import NoQLite, Query

db = NoQLite('bicycles-per-capita.db')
db.insert({'rate': 0.6, 'country': 'Japan'})
db.insert({'rate': 0.8, 'country': 'Denmark'})
db.insert({'rate': 1.3, 'country': 'Netherlands'})
db.search(Query().rate > 1)
# [{'id': 3, 'country': 'Netherlands', 'rate': 1.3}]

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

noqlite-0.1.0-py2.py3-none-any.whl (3.6 kB view hashes)

Uploaded Python 2 Python 3

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