Skip to main content

用于云片网的django app

Project description

django-yunpian-app

继承了云片的app. 里面有各种适应云片网的model

安装

pip install django-yunpian-app

基础引入

  1. 编辑<your_project>/settings.py
INSTALLED_APPS = [
    ...
    "django_yunpian"
    ...
]
  1. 创建数据库表
python manage.py migrate
  1. 根据自己的数据,创建账号,签名
from django_yunpian.models import Account, Sign, Template
account = Account.objects.create(
    ...
)
sign = Sign.objects.create(
    account=account,
    ...
)
template = Template.objects.create(
    sign=sign
    ...
)
  1. 发送短信
from django_yunpian.models import Message
Message.objects.create(
    template = template,
    ...
)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-yunpian-app-1.0.2.tar.gz (3.9 kB view hashes)

Uploaded Source

Built Distribution

django_yunpian_app-1.0.2-py3-none-any.whl (18.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page