Metadata-Version: 2.1
Name: django-sh
Version: 1.0.0
Summary: Django shell app for browser
Home-page: https://gitlab.com/jahazieldom/django-sh
Author: admintotal-dev
License: UNKNOWN
Description: # 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')),
            # ...
        ]
        
        ```
Platform: UNKNOWN
Description-Content-Type: text/markdown
