ChanMo / django-sms-cn

Django SMS APP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Django SMS CN

基于Django的短信模块

Platforms

Quick start

安装django-sms-cn

$ pip install aliyun-python-sdk-core # 如果需要使用aliyun
$ pip install django-sms-cn

settings.py中修改INSTALLED_APPS

INSTALLED_APPS = [
    ...
    'sms'
]

settings.py底部加配置信息

SMS = {
    'default': '253',
    'appid': '',
    'secret': ''
}

修改urls.py

urlpatterns = [
    ...
    path('sms/', include('sms.urls'))
]

更新数据库

$ python manage.py migrate

About

Django SMS APP

License:MIT License


Languages

Language:Python 100.0%