Skip to content

onrik/django-webshell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 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