Metadata-Version: 1.1
Name: django-query-builder
Version: 3.0.1
Summary: Build complex nested queries
Home-page: https://github.com/ambitioninc/django-query-builder
Author: Wes Okes
Author-email: wes.okes@gmail.com
License: MIT
Description: .. image:: https://travis-ci.org/ambitioninc/django-query-builder.png
           :target: https://travis-ci.org/ambitioninc/django-query-builder
        
        .. image:: https://coveralls.io/repos/ambitioninc/django-query-builder/badge.png?branch=develop
            :target: https://coveralls.io/r/ambitioninc/django-query-builder?branch=develop
        
        .. image:: https://pypip.in/v/django-query-builder/badge.png
            :target: https://crate.io/packages/django-query-builder/
            :alt: Latest PyPI version
        
        .. image:: https://pypip.in/d/django-query-builder/badge.png
            :target: https://crate.io/packages/django-query-builder/
        
        django-query-builder
        ====================
        querybuilder is a django library for assisting with the construction and
        execution of sql. This is not meant to replace django querysets; it is meant
        for managing complex queries and helping perform database operations that
        django doesn't handle.
        
        Why use querybuilder?
        ---------------------
        The django querybuilder allows you to control all parts of the query
        construction. This is happens more clearly because the function calls more
        closely represent the actual sql keywords.
        
        Why not just use django's .raw() function?
        ------------------------------------------
        While the raw function lets you execute custom sql, it doesn't provide any way
        for the developer to build the query dynamically. Users lacking experience
        writing "raw" sql should avoid using querybuilder and stick with django's
        querysets. The querybuilder's query construction closely mirrors writing sql,
        where django querysets simplify the sql generation process for simple queries.
        
        Requirements
        ------------
        * Python 2.7
        * Python 3.3, 3.4
        * Django 1.7+
        * Postgres 9.3+
        
        Installation
        ------------
        To install the latest release, type::
        
            pip install django-query-builder
        
        To install the latest code directly from source, type::
        
            pip install git+git://github.com/ambitioninc/django-query-builder.git
        
        Documentation
        -------------
        
        Full documentation is available at http://django-query-builder.readthedocs.org
        
        License
        -------
        MIT License (see LICENSE)
        
Keywords: django,database,query,sql,postgres,upsert
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Framework :: Django :: 3.0
Classifier: Framework :: Django :: 3.1
Classifier: Framework :: Django :: 3.2
Classifier: Framework :: Django :: 4.0
Classifier: Framework :: Django :: 4.1
