Metadata-Version: 2.1
Name: django-weapp-auth
Version: 1.0.3
Summary: A helper Django app that handles wechat mini program login and user info updating logic
Home-page: https://blog.mimimi.fun/
Author: Meowzz95
Author-email: info@mimimi.fun
License: BSD License
Description: #Weapp Auth
        
        Weapp auth is a Django app that helps to handle wechat mini program login and user info updating logic.
        
        Quick start
        -----------
        
        1. Add "weapp_auth" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'weapp_auth',
            ]
        
        2. Include the weapp_auth URLconf in your project urls.py like this::
        
            path('weapp_auth/', include('weapp_auth.urls')),
        
        3. Run `python manage.py migrate` to create the polls models.
        
        4. These two APIs are avaliable! `weapp_auth/wechatLogin/` and `weapp_auth/wechatUpdateUserInfo/`
        
        5. Call these two APIs in your wechat mini app!
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
