3.获取一个post请求

import urllib.parse
data=bytes(urllib.parse.urlencode({"hello":"world"}),encoding="utf-8")
response=urllib.request.urlopen("http://httpbin.org/post",data=data)
print(response.read().decode("utf-8"))

 

posted @ 2021-03-09 09:30  种太阳  阅读(3)  评论(0编辑  收藏  举报