Python 相关方便小技巧

  • 默认本地文件服务器

进入某个文件目录,这个目录就可以用网络访问

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() 

你可能感兴趣的:(Python 相关方便小技巧)