Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/onrik/django-webshell

Django application for running python code in your project's environment from django admin.
https://github.com/onrik/django-webshell

django django-admin

Last synced: 7 days ago
JSON representation

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

Awesome Lists containing this project

README

        

Django-webshell
===============
[![Build Status](https://travis-ci.org/onrik/django-webshell.svg?branch=master)](https://travis-ci.org/onrik/django-webshell)
[![Coverage Status](https://coveralls.io/repos/github/onrik/django-webshell/badge.svg?branch=master)](https://coveralls.io/github/onrik/django-webshell?branch=master)

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

Installation
------------

pip install django-webshell

settings.py:
```python
INSTALLED_APPS = (
...
'webshell',
...
)
```

urls.py:
```python
urlpatterns = patterns('',
...
(r'^admin/webshell/', include('webshell.urls')),
...
)
```
![django-webshell](example.png)