Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Latest commit

 

History

History
30 lines (25 loc) · 776 Bytes

README.md

File metadata and controls

30 lines (25 loc) · 776 Bytes

Django-python-interpreter

Build Status Coverage Status

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

Installation

pip install django-python-interpreter

settings.py:

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

urls.py:

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

django-webshell