Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 713 Bytes

README.md

File metadata and controls

30 lines (25 loc) · 713 Bytes

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