Metadata-Version: 1.1
Name: qbuilder
Version: 0.1.1
Summary: A library to build human readable SQL query string using a pythonic API
Home-page: https://github.com/brijeshb42/qbuilder
Author: Brijesh Bittu
Author-email: brijeshb42@gmail.com
License: http://www.opensource.org/licenses/mit-license.php
Download-URL: https://github.com/brijeshb42/qbuilder/tarball/0.1.0
Description: # Querybuilder
        
        A module to build human readable SQL query string and then optionally convert them to `where()` caluse expressions for [Peewee](http://peewee-orm.com).
        
        ```python
        from querybuilder import Field as F, AND, OR
        query = OR(AND(F('pageviews') >= 10000, F('author_ids').contains(7,8,9)))
        ```
        
Keywords: SQL,peewee,querybuilder
Platform: UNKNOWN
