上一页 1 ··· 9 10 11 12 13 14 15 下一页
摘要: Python发邮件 这里以QQ邮箱为例,首先要拿到授权码,这里登录你的QQ邮箱,在设置中,选择账号选项,下拉到POP3/IMAP/SMTP/Exchange/CardDAV/CalDAV服务项,获取授权码。 发送普通文本邮件 import smtplib from email.mime.text i 阅读全文
posted @ 2022-11-28 19:31 凫弥 阅读(339) 评论(0) 推荐(0) 编辑
摘要: 常见用于定时任务的: crontab django的定时任务 APScheduler celery:http://docs.jinkan.org/docs/celery/getting-started/introduction.html APScheduler pip install -i http 阅读全文
posted @ 2022-11-28 16:29 凫弥 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 后端 class AuctionModelSerializer(serializers.ModelSerializer): status = serializers.SerializerMethodField() items = serializers.SerializerMethodField() 阅读全文
posted @ 2022-11-07 03:25 凫弥 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 表结构 from django.db import models from django.contrib.contenttypes.models import ContentType from django.contrib.contenttypes.fields import GenericFore 阅读全文
posted @ 2022-11-06 07:50 凫弥 阅读(36) 评论(0) 推荐(0) 编辑
摘要: bootstrap-select插件压缩包 引入css <link rel="stylesheet" href="{% static 'plugin/bootstrap-select/css/bootstrap-select.min.css' %}"> 引入js <script src="{% st 阅读全文
posted @ 2022-11-03 22:25 凫弥 阅读(310) 评论(0) 推荐(0) 编辑
摘要: bootstrap-datepicker插件压缩包 引入css <link rel="stylesheet" href="{% static 'plugin/bootstrap-datepicker/css/bootstrap-datepicker.min.css' %}"> 引入js <scrip 阅读全文
posted @ 2022-11-03 22:08 凫弥 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 1.沙箱环境 一个用于开发测试的环境。 2.微信小程序支付 2.1 微信小程序平台 个人 企业(微信支付) 2.2 商户平台账号(企业) 开通商户平台 小程序 和 商户平台账号关联 2.3 账号 AppID 商户号 商户key(关键) 3. 微信支付的步骤 登录,获取用户openid,前端发送ope 阅读全文
posted @ 2022-11-02 07:22 凫弥 阅读(266) 评论(0) 推荐(0) 编辑
摘要: celery 佩奇详解 celery是一个基于Python开发的模块,可以帮助我们对任务进行分发和处理。 1.1 环境的搭建 pip3 install celery==4.4 安装broker: redis或rabbitMQ pip3 install redis / pika windows需额外安 阅读全文
posted @ 2022-10-31 07:29 凫弥 阅读(83) 评论(0) 推荐(0) 编辑
摘要: MD5加密 import hashlib def md5(string): m = hashlib.md5() m.update(string.encode('utf-8')) return m.hexdigest() 阅读全文
posted @ 2022-10-31 00:42 凫弥 阅读(65) 评论(0) 推荐(0) 编辑
摘要: # `通信流程` ![1667001050455](https://img2022.cnblogs.com/blog/2867340/202210/2867340-20221029075624657-1368044110.png) ``` 握手:b5 ff aa 3 1 10 aa 99 8 5b( 阅读全文
posted @ 2022-10-29 07:57 凫弥 阅读(600) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 下一页