AI智能
改变未来

python爬取气象台每日天气图代码


目录
  • 前言
  • 1.安装Selenium
  • 2. 安装chromedriver
  • 3.代码

前言

中央气象台网站更新后,以前的爬虫方式就不太能用了,我研究了一下发现主要是因为网站上天气图的翻页模式从点击变成了滑动,页面上的图片src也只显示当前页面的,因此,按照网络通俗的方法去爬取就只能爬出一张图片。看了一些大佬的教程后自己改出来一个代码。

1.安装Selenium

Selenium是一个Web的自动化(测试)工具,它可以根据我们的指令,让浏览器执行自动加载页面,获取需要的数据等操作。

pip install selenium

2. 安装chromedriver

Selenium 自身并不具备浏览器的功能,Google的Chrome浏览器能方便的支持此项功能,需安装其驱动程序Chromedriver

下载地址:http://chromedriver.storage.googleapis.com/index.html

在google浏览器的地址栏输入‘chrome://version/’,可以查看版本信息,下载接近版本的就可以。

3.代码

从图里可以看到,向前翻页指令对应的id是'prev'

from selenium import webdriver  ## 导入selenium的浏览器驱动接口from selenium.webdriver.common.action_chains import ActionChainsfrom selenium.webdriver.support.ui import Selectimport timeimport osimport urllib.requestlevel=[\'地面\',\'925hPa\',\'850hPa\',\'700hPa\',\'500hPa\',\'100hPa\']chrome_driver = \'路径/chromedriver.exe\'  #chromedriver的文件位置driver = webdriver.Chrome(executable_path = chrome_driver)          #加载浏览器驱动driver.get(\'http://www.nmc.cn/publish/observations/china/dm/weatherchart-h000.htm\')  #打开页面time.sleep(1)#模拟鼠标选择高度层for z in level:button1=driver.find_element_by_link_text(z)     #通过link文字精确定位元素action = ActionChains(driver).move_to_element(button1) #鼠标悬停在一个元素上action.click(button1).perform()                        #鼠标单击time.sleep(1)for p in range(0,6):    #下载最近6个时次的天气图str_p=str(p)#模拟鼠标选择时间button2=driver.find_element_by_id(\'prev\')             #通过id精确定位元素action = ActionChains(driver).move_to_element(button2) #鼠标悬停在一个元素上action.click(button2).perform()                        #鼠标单击time.sleep(1)#模拟鼠标选择图片elem_pic = driver.find_element_by_id(\'imgpath\')       #通过id精确定位元素action = ActionChains(driver).move_to_element(elem_pic)#action.context_click(elem_pic).perform()              #鼠标右击filename= str(elem_pic.get_attribute(\'src\')).split(\'/\')[-1].split(\'?\')[0]  #获取文件名#获取图片srcsrc1=elem_pic.get_attribute(\'src\')if os.path.exists(\'存图路径/\'+z+\'\') is not True :os.makedirs(\'存图路径/\'+z+\'\')urllib.request.urlretrieve(src1 , \'存图路径/\'+z+\'/\'+filename)print(filename)time.sleep(1)

然后就可以轻松的爬取所有图片

到此这篇关于python爬取气象台每日天气图代码的文章就介绍到这了,更多相关python爬取天气图内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:

  • 基于pythonopencv单目相机标定的示例代码
  • Python 3行代码提取音乐高潮部分
  • python爬取豆瓣评论制作词云代码
  • Python自动爬取图片并保存实例代码
  • Python扑克牌21点游戏实例代码
  • 分享6个值得收藏的Python代码
赞(0) 打赏
未经允许不得转载:爱站程序员基地 » python爬取气象台每日天气图代码