当前位置:   article > 正文

python爬取美女写真,selenium,requests_img.yalayi.net

img.yalayi.net

以这个网站为例,爬取美女写真。

 代码如下:

  1. from selenium import webdriver
  2. from time import sleep
  3. from lxml import etree
  4. import requests
  5. import os
  6. # 浏览器自动化
  7. headers = {
  8. "User-Agent": "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) "
  9. "Chrome/108.0.0.0 Mobile Safari/537.36 Edg/108.0.1462.54 "
  10. }
  11. dirName = '0107beautifulgirl' # 新建文件夹
  12. if not os.path.exists(dirName):
  13. os.mkdir(dirName)
  14. # 基于浏览器的驱动程序实例化一个浏览器对象
  15. # 下载谷歌驱动,网址:http://chromediver.storage.googleapis.com/index.html
  16. bro = webdriver.Chrome(executable_path=r'C:\Program Files\Google\Chrome\Application\chromedriver.exe')
  17. # 对目的网站发起请求
  18. bro.get('https://www.yalayi.com/gallery/')
  19. sleep(1)
  20. page_list
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/446034
推荐阅读
相关标签
  

闽ICP备14008679号