Requery
Store e run queries on database to help system manager of a Django website
Install / Use
/learn @ebertti/RequeryREADME
requery
Simple way to store and use queries in database for use of DBA in Django Admin
WARNING: Project Discontinued
Try to use: https://github.com/groveco/django-sql-explorer
Installation
-
pip install requery -
Add
requeryto yourINSTALLED_APPSinsettings.py::
.. code-block:: python
INSTALLED_APPS = (
# ...
'requery',
)
3. Run python manage.py migrate
Screenshot
- 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
- 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
- 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>_
- Working on Python 3 -
