Metadata-Version: 2.0
Name: django-shell
Version: 1.0.2
Summary: Django Shell Functions
Home-page: https://github.com/django-xxx/django-shell
Author: Hackathon
Author-email: kimi.huang@brightcells.com
License: UNKNOWN
Keywords: django-shell
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Office/Business :: Financial :: Spreadsheet

============
django-shell
============

Django Shell Functions

Installation
============

::

    pip install django-shell


Usage
=====

::

    from django_shell import reset_pwd
    # def reset_pwd(password='1q2w3e4r5t6y7u8i9o0p', username='admin')
    reset_pwd()
    reset_pwd('1q2w3e4r5t6y7u8i9o0p')
    reset_pwd('1q2w3e4r5t6y7u8i9o0p', 'admin')



