首页 > 编程 > Python > 正文

python爬取哈尔滨天气信息

2020-02-15 22:23:21
字体:
来源:转载
供稿:网友

本文实例为大家分享了python爬取哈尔滨天气信息的具体代码,供大家参考,具体内容如下

环境:

windows7

python3.4(pip install requests;pip install BeautifulSoup4)

代码: (亲测可以正确执行)

# coding:utf-8"""总结一下,从网页上抓取内容大致分3步:1、模拟浏览器访问,获取html源代码2、通过正则匹配,获取指定标签中的内容3、将获取到的内容写到文件中"""import requests # 用来抓取网页的html源代码import csv # 将数据写入到csv文件中import random # 取随机数import time # 时间相关操作import socket # 用于异常处理import http.client # 用于异常处理from bs4 import BeautifulSoup # 用来代替正则式取源码中相应标签中的内容# 获取网页中的html代码def get_content(url, data=None):  header = {    'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8',    'Accept-Encoding': 'gzip, deflate',    'Accept-Language': 'zh-CN,zh;q=0.9',    'Connection': 'keep-alive',    'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36'  }  timeout = random.choice(range(80, 180)) # timeout是设定的一个超时时间,取随机数是因为防止被网站认定为网络爬虫  while True:    try:      rep = requests.get(url, headers=header, timeout=timeout)      rep.encoding = 'utf-8' # rep.encoding = ‘utf-8'是将源代码的编码格式改为utf-8      break    except socket.timeout as e:      print('3:', e)      time.sleep(random.choice(range(8, 15)))    except socket.error as e:      print('4:', e)      time.sleep(random.choice(range(20, 60)))    except http.client.BadStatusLine as e:      print('5:', e)      time.sleep(random.choice(range(30, 80)))    except http.client.IncompleteRead as e:      print('6:', e)      time.sleep(random.choice(range(5, 15)))  return rep.text# 获取html中我们所需要的字段def get_data(html_text):  final = []  bs = BeautifulSoup(html_text, "html.parser") # 创建BeautifulSoup对象  body = bs.body # 获取body部分  data = body.find('div', {'id': '7d'}) # 找到id为7d的div  ul = data.find('ul') # 获取ul部分  li = ul.find_all('li') # 获取所有的li  for day in li: # 对每个li标签中的内容进行遍历    temp = []    date = day.find('h1').string # 找到日期    temp.append(date) # 添加到temp中    inf = day.find_all('p') # 找到li中的所有p标签    temp.append(inf[0].string, ) # 第一个p标签中的内容(天气状况)加到temp中    if inf[1].find('span') is None:      temperature_highest = None # 天气预报可能没有当天的最高气温(到了傍晚,就是这样),需要加个判断语句,来输出最低气温    else:      temperature_highest = inf[1].find('span').string # 找到最高温      temperature_highest = temperature_highest.replace('℃', '') # 到了晚上网站会变,最高温度后面也有个℃    temperature_lowest = inf[1].find('i').string # 找到最低温    temperature_lowest = temperature_lowest.replace('℃', '') # 最低温度后面有个℃,去掉这个符号    temp.append(temperature_highest) # 将最高温添加到temp中    temp.append(temperature_lowest) # 将最低温添加到temp中    final.append(temp) # 将temp加到final中  return final# 写入文件csvdef write_data(data, name):  file_name = name  with open(file_name, 'a', errors='ignore', newline='') as f:    f_csv = csv.writer(f)    f_csv.writerows(data)if __name__ == '__main__':  url = 'http://www.weather.com.cn/weather/101050101.shtml'  html = get_content(url)  result = get_data(html)  write_data(result, 'weather.csv')             
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表