https://github.com/ebertti/requery
Store e run queries on database to help system manager of a Django website
https://github.com/ebertti/requery
dba deprecated django django-admin python
Last synced: 6 months ago
JSON representation
Store e run queries on database to help system manager of a Django website
- Host: GitHub
- URL: https://github.com/ebertti/requery
- Owner: ebertti
- Created: 2012-09-15T00:07:08.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2016-09-09T20:58:23.000Z (over 9 years ago)
- Last Synced: 2025-06-12T18:11:20.033Z (7 months ago)
- Topics: dba, deprecated, django, django-admin, python
- Language: JavaScript
- Homepage:
- Size: 427 KB
- Stars: 11
- Watchers: 3
- Forks: 9
- Open Issues: 6
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
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
------------
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 `_ on Github to provide that feedback.
Authors
-------
The requery was original created by Ezequiel Bertti `@ebertti `_ and João Leite `@joaoleite `_ in September 2012.
Changelog
---------
* 0.3.5.1
* Working on Python 3 - `@tomatohater `_