Metadata-Version: 2.1
Name: django-sh
Version: 1.0.7
Summary: Django shell app for browser
Home-page: https://gitlab.com/jahazieldom/django-sh
Author: admintotal-dev
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: django (>=1.8) ; python_version >= "3"

# django-sh
Django shell 


## Installation
```
pip install django-sh
```

## Add django-sh to INSTALLED_APPS
```
INSTALLED_APPS = [
    # ...
    "sh",
    # ...
]
```

## Add the urls
```
from django.urls import include

urlpatterns = [
    # ...
    path('sh/', include('sh.urls')),
    # ...
]
```

## Migrate 
```
python manage.py migrate
```

