Metadata-Version: 2.1
Name: requery
Version: 0.4.1.1
Summary: Simple way to store and use queries in database for use of DBA for Django Admin
Home-page: http://github.com/ebertti/requery/
Author: Ezequiel Bertti
Author-email: ebertti@gmail.com
License: MIT License
Keywords: query dba repository report django
Platform: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Natural Language :: Portuguese (Brazilian)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Database
Classifier: Topic :: Database :: Front-Ends
Requires-Dist: django>=1.7
Requires-Dist: Pygments>=1.6
Requires-Dist: six>=1.7

requery
=======

Simple way to store and use queries in database for use of DBA in Django Admin

.. image:: https://d2weczhvl823v0.cloudfront.net/ebertti/requery/trend.png
.. image:: https://pypip.in/v/requery/badge.png
.. image:: https://pypip.in/d/requery/badge.png

Installation
------------

1. ``pip install requery``

2. Add ``requery`` to your ``INSTALLED_APPS`` in ``settings.py`` ::

.. code-block:: python

        INSTALLED_APPS = (
            # ...
            'requery',
        )

3. Run ``python manage.py migrate``

Screenshot
----------

1) Create and edit query

You can use ``:param_name`` to use to run your queries later.

.. image:: https://raw.githubusercontent.com/ebertti/requery/master/screenshot/change_form.png

2) Listing your queries stored in Django Admin

You can choose a query to run, just click in **Run**

.. image:: https://raw.githubusercontent.com/ebertti/requery/master/screenshot/change_list.png

3) Running and show result

Fill the form with your parameters and click in **Run** to see the results

.. image:: https://raw.githubusercontent.com/ebertti/requery/master/screenshot/running.png


Please help us
--------------
This project is still under development. Feedback and suggestions are very welcome and I encourage you to use the `Issues list <http://github.com/ebertti/requery/issues>`_ on Github to provide that feedback.

Authors
-------
The requery was original created by Ezequiel Bertti `@ebertti <https://github.com/ebertti>`_ and João Leite `@joaoleite <https://github.com/joaoleite>`_ in September 2012.

Changelog
---------

* 0.3.5.1

  * Working on Python 3 - `@tomatohater <https://github.com/tomatohater>`_

* 0.4.1.0

  * Allow receive list parameter as arguments for query

* 0.4.1.1

  * Fix reverse url in template
