You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

django-sql

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-sql

A simple app for executing SQL queries in Django admin panel

1.0.1
pipPyPI
Maintainers
1

Build Status Coverage Status PyPI version Licence

Django-SQL

A simple app for executing SQL queries in Django admin panel.

! WARNINIG !

Do not install this app if you afraid of consequences of giving access to database from admin panel.

Requirements
  • Python3
  • Django 1.9
Installation
    pip install django-sql

Add to your INSTALLED_APPS in settings.py:

    INSTALLED_APPS = [
      ...
      'sqlapp',
    ]

Add to your urls.py:

   from sqlapp.sqlapp import execute_sql
   
   urlpatterns = [
      url(r'^admin/sqlapp/(?:sql/)?$', execute_sql, name='sql'),
      url(r'^admin/', include(admin.site.urls), name='admin'),
   ]

Note: The sqlapp URL pattern must come BEFORE the admin pattern as shown above.

Contributors

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts