项目作者: ChanMo

项目描述 :
Django SMS APP
高级语言: Python
项目地址: git://github.com/ChanMo/django-sms-cn.git
创建时间: 2019-08-03T06:19:06Z
项目社区:https://github.com/ChanMo/django-sms-cn

开源协议:MIT License

下载


Django SMS CN

基于Django的短信模块

Platforms

Quick start

安装django-sms-cn

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

settings.py中修改INSTALLED_APPS

  1. INSTALLED_APPS = [
  2. ...
  3. 'sms'
  4. ]

settings.py底部加配置信息

  1. SMS = {
  2. 'default': '253',
  3. 'appid': '',
  4. 'secret': ''
  5. }

修改urls.py

  1. urlpatterns = [
  2. ...
  3. path('sms/', include('sms.urls'))
  4. ]

更新数据库

  1. $ python manage.py migrate