Last updated:
0 purchases
rcquerybuilder 0.1.2
The rcquerybuilder package provides a fluent api wrapper around pymongo queries.
This allows you to write and execute mongodb queries like this:
>>> from rcquerybuilder.builder import Builder
>>> qb = Builder(collection=None)
>>> qb.field('name').equals('foobar') \
... .field('fizz').ne(None) \
... .get_query_list()
{'name': 'foobar', 'fizz': {'$ne': None}}
Installation
To install rcquerybuilder, simply:
$ pip install rcquerybuilder
Documentation
Documentation is available at https://rcquerybuilder.readthedocs.org.
How to Contribute
Fork the repository to start making your changes on the master branch (or branch off of it).
Send a pull request and make sure to add yourself to AUTHORS.
Release History
0.1.0 (???)
Initialization
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.