Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
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
  • PyPI
  • Socket score

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc