开发者

Python Requests爬虫之求取关键词页面详解

开发者 https://www.devze.com 2022-12-11 10:07 出处:网络 作者: 那人独钓寒江雪.
目录需求:爬取搜狗首页的页面数据使用UA伪装 求取关键词页面总结需求:爬取搜狗首页的页面数据
目录
  • 需求:爬取搜狗首页的页面数据
  • 使用UA伪装 求取关键词页面
  • 总结

需求:爬取搜狗首页的页面数据

import requestsif __name__=='__main__':    #step 1:搜索Url    url='https://123.sogou.com/'    #step 2:发起请求    #get方法会返回一个响应对象    response=requests.get(url=url)    #step 3:获取响应数据,text返回的是字符串形式的响应数据    page_text=response.text    print(page_text)    #step 4:持久化存储    with open('./sogou.html','w',encoding='utf-8') as fp:        fp.write(page_text)    print("爬取数据结束")import requests
if __name__编程客栈=='__main__':
    #step 1:搜索Url
    url='https://123.sogou.com/'
   编程客栈 #step 2:发起请求
    #get方法会返回一个响应对象
    response=requests.get(url=url)
    #step 3:获取响应数据,text返回的是字符串形式的响应数据
    page_text=response.text
    print(page_text)
    #step 4:持久化存储
    with open('./sogou.html','w',encoding='utf-8') as fp:
        fp.write(page_text)
    print("爬取数据结束")

Python Requests爬虫之求取关键词页面详解

使用UA伪装 求取关键词页面

import requests
if __name__=='__main__':
    #UA伪装:将对应的User-Agent封装到一个字典中
    headers={
        'User-Agent':http://www.cppcns.com'Mozilla/5.0 (Windhttp://www.cppcns.comows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.9 Safari/537.36'
    }
    url='https://www.sogou.com/sie?'
    #处理url携带的参数:封装到字典中
    kw=input('enter a word:')
    param={
        'query':kw
    }
    #对指定的url发起的请求对应的url是携带参数的,并且请求过程中处理了参数
    response=requests.get(url=url,params=param,headers=headers)#headers是伪装 params输入关键词

    page_text=response.text#以文本的形式输出
    fileName=kw+'.html'#存储为网页形式
    with open(fileName,'w+',encoding='utf-8') as fp:
        fp.write(page_text)#写入fp
    print(fileName,"保存成功!!")

Python Requests爬虫之求取关键词页面详解

总结

本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注我们的更多内容!   swmGDneS      

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号