随笔分类 - Python
摘要:相关定义语法 a = b"Hello, world!" # bytes object b = "Hello, world!" # str object 字符串转字节 str --> bytes # 字符串转字节 str --> bytes print(str.encode(b)) # 默认 enco
阅读全文
摘要:前言 今天, 博主将写了好久的一个Django小项目尝试在阿里云部署上线,由于项目中需要发送邮件,博主调用了163邮箱接口,在本地测试邮件功能正常,可是上线后,邮件功能一直超时崩溃。在百度一番查资料后,最后终于得到了解决。 正题 [tip type="tip error" ]原因:阿里云服务器禁用了
阅读全文
摘要:使用python -m pip install --upgrade pip 使用python -m pip install -U --force-reinstall pip 使用pip install --user --upgrade pip 失败了一般用换一种方法就解决了
阅读全文
摘要:本博客已停更,请转自新博客查看 https://www.whbwiki.com/318.html 错误提示 Refused to display 'http://127.0.0.1:8000/index/welcome.html' in a frame because it set 'X-Frame
阅读全文
摘要:一、什么是中间件 中间件顾名思义,是介于request与response处理之间的一道处理过程,相对比较轻量级,并且在全局上改变django的输入与输出。因为改变的是全局,所以需要谨慎实用,用不好会影响到性能 django中间价官网定义: Middleware is a framework of h
阅读全文
摘要:本博客已暂停更新,请转自新博客 https://www.whbwiki.com/320.html 继续阅读 简介 在django中我们需要在templates的form中加入{%csrf_token%}这串内容,它的作用是当我们get表单页面时,服务器返回页面的同时也会向前端返回一串随机字符,pos
阅读全文
摘要:安装pillow模块 Python生成随机验证码,需要使用pillow模块. 安装命令: pip3 install pillow 基本使用 创建图片 from PIL import Image img = Image.new(mode='RGB', size=(120, 30), color=(25
阅读全文