python与django版本更新

本篇记录的是从python2.7,django1.7.1升级到python3.8.1,django3.0.5遇到的一些问题。


FileResponse

New in Django 1.7.4.

from django.http import FileResponse

utf-8编码

#python2
import sys
reload(sys)
sys.setdefaultencoding("utf-8")
#python3
Python3字符串默认编码unicode, 所以sys.setdefaultencoding也不存在了。

urllib2库

urllib — URL 处理模块
urllib2 在 python3.x 中被改为 urllib.request
参考

urllib2 是 Python2.7 自带的模块(不需要下载,导入即可使用)
urllib2 官方文档:https://docs.python.org/2/library/urllib2.html
urllib2 源码:https://hg.python.org/cpython/file/2.7/Lib/urllib2.py

No module named ‘httplib’

Python 2.x中的"httplib"模块在Python 3.x中变成了"http.client"。


cookielib库

python3中为http.cookiejar。


你可能感兴趣的:(python)