Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/onrik/django-webshell
- Owner: onrik
- License: mit
- Created: 2013-11-04T11:25:01.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2024-07-31T06:46:33.000Z (5 months ago)
- Last Synced: 2024-12-28T22:12:29.285Z (14 days ago)
- Topics: django, django-admin
- Language: JavaScript
- Homepage:
- Size: 204 KB
- Stars: 46
- Watchers: 6
- Forks: 21
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-webshell - **27**星
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)