Metadata-Version: 2.0
Name: noqlite
Version: 0.1.0
Summary: simple nosql over sqlite
Home-page: https://github.com/gowhari/noqlite
Author: Iman Gowhari
Author-email: gowhari@gmail.com
License: MIT
Platform: UNKNOWN

noqlite
==========

simple nosql over sqlite

install
=======

::

    pip install noqlite


usage
=====

.. code:: python

    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}]


