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

jowolf/django-webshell

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django-webshell

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

Installation

pip install 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

Packages

No packages published

Languages

  • JavaScript 93.7%
  • CSS 2.4%
  • Python 2.0%
  • HTML 1.9%