Python 相关方便小技巧
程序员文章站
2022-03-20 11:18:26
...
- 默认本地文件服务器
进入某个文件目录,这个目录就可以用网络访问
python 2 和 python3 略有不同
python2
python -m SimpleHTTPServer 8088
python3
python3 -m http.server 8888
python 文档
python -m pydoc -p 端口
搭建好python开发环境后查看api文档Python3的两种HTTP请求实现
第一种方法:使用urllib.request.urlopen()
req = urllib.request.Request(url, None, header, None, False, method)
content = urllib.request.urlopen(req)
第二种方法:使用http.client.HTTPConnection.request()
conn = http.client.HTTPConnection(host)
conn.request(method, "", "", header)
content = conn.getresponse()
上一篇: SpringCloud学习笔记
下一篇: Springcloud学习笔记(二)