urllib运用

Posted lizhihoublog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了urllib运用相关的知识,希望对你有一定的参考价值。

# 使用parse对网址进行拼接操作
from urllib import request,parse
base_url = https://www.baidu.com/s?
wd = input(请输入查询信息>>)
query_msg = {
    wd:wd
}
msg = parse.urlencode(query_msg)
url = base_url+msg

header = {
    User-Agent:Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0
}

req = request.Request(url=url,headers=header)
response = request.urlopen(req).read().decode(utf-8)

with open(teiba.html,w,encoding=utf-8)as files:
    files.write(response)

 

以上是关于urllib运用的主要内容,如果未能解决你的问题,请参考以下文章

urllib运用

转: python requests的安装与简单运用

urllib运用

urllib中的保存cookie使用,运用cookiejar来模拟登录人人网

Python爬虫之GET和POST请求然后正确运用详解

Python爬虫之GET和POST请求然后正确运用详解