Skip to content

Django application for running python code in your project's environment from django admin.

License

Notifications You must be signed in to change notification settings

OmerBhatti/django-webshell

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

70 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django-webshell

Build Status Coverage Status

Django application for running python code in your project's environment from django admin.

Installation

pip install django-webshell

settings.py:

INSTALLED_APPS = (
    ...
    'webshell',
    ...
)

urls.py:

urlpatterns = patterns('',
    ...
    (r'^admin/webshell/', include('webshell.urls')),
    ...
)

django-webshell

About

Django application for running python code in your project's environment from django admin.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 92.4%
  • Python 3.5%
  • CSS 2.3%
  • HTML 1.8%