django-yunpian-app
继承了云片的app. 里面有各种适应云片网的model
安装
pip install django-yunpian-app
基础引入
- 编辑
<your_project>/settings.py
INSTALLED_APPS = [
...
"django_yunpian"
...
]
- 创建数据库表
python manage.py migrate
- 根据自己的数据,创建账号,签名
from django_yunpian.models import Account, Sign, Template
account = Account.objects.create(
...
)
sign = Sign.objects.create(
account=account,
...
)
template = Template.objects.create(
sign=sign
...
)
- 发送短信
from django_yunpian.models import Message
Message.objects.create(
template = template,
...
)
Release files for django-yunpian-app 1.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| django-yunpian-app-1.1.0.tar.gz | 17.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| django_yunpian_app-1.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 39.0 kB
Release files / django-yunpian-app-1.1.0.tar.gz
| Download URL | django-yunpian-app-1.1.0.tar.gz |
|---|---|
| Size | 17.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
5e83a2a6156e6e4da68fd8bb89efc728ea1c1853a23095d3ae71700f17c604c8
|
|
BLAKE2b-256 checksum How to use checksums |
cda2199d96f31474a596508cc083aaa16c19c83823434f4d9240e01de2f4dd50
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.8.10
|
Release files / django_yunpian_app-1.1.0-py3-none-any.whl
| Download URL | django_yunpian_app-1.1.0-py3-none-any.whl |
|---|---|
| Size | 21.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
22cdcd9af3ef9ad8322c20691b23de6ec2379d723e78ee6ab97875a67febd76e
|
|
BLAKE2b-256 checksum How to use checksums |
0f4e2c93379322c7269cce5625a404b99ba5efe5442cc364b46555761f6c5341
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.8.10
|