美文网首页
历史天气

历史天气

作者: 机会call | 来源:发表于2019-04-09 11:33 被阅读0次

"'

!/usr/bin/python

-- coding: utf-8 --

import requests
from bs4 import BeautifulSoup
from lxml import etree
import numpy as np
import pandas as pd
import csv

class Spider(object):

def start_request(self):
    url= "https://www.baidutianqi.com/history/57016.htm"
    response = requests.get(url)
    html = etree.HTML(response.content.decode())
    Big_src= html.xpath('//div[@class="list2 clearfix"]/ul/li/a/@href')
    for bigsrc in Big_src:
        self.file_request(bigsrc)



def file_request(self,bigsrc):
    response = requests.get(bigsrc)
    html = etree.HTML(response.content.decode())
    content= html.xpath('//tr/td/text()')
    for i in range(0,len(content),6):
        ones=content[i:i+6]
        with open('baoji.csv', 'a') as f:
            f.write(str(ones) + '\n')

spider=Spider()
spider.start_request()
"'

相关文章

  • 历史天气

    "' !/usr/bin/python -- coding: utf-8 -- import requestsfr...

  • 历史天气

    链接:https://www.zhihu.com/question/19789309/answer/1406380...

  • 历史天气爬虫

    最近要分析天气对业务的影响,所以做了一个历史天气的爬虫

  • 天气历史数据

    机场天气历史数据 https://www.wunderground.com/weather/ci/xongda/I...

  • 天气与口述历史

    连续阴雨一个多月,这两天天空放晴,气温爬升,夏天要来了。 半个月前和83岁的姑爹聊天,他说,从江西来成都数十年,刚...

  • 历史天气网站信息对比

    历史天气——以2017年2月4日厦门市为例: 1、rp5.ru2015年2月1日后的数据,数据可以直接下载保存ex...

  • python爬取历史天气数据

    原文链接: 环境说明 扒取的网站:天气网,http://lishi.tianqi.com/ Python版本:2....

  • 高三日记——历史老常

    2020.3.26 天气:雨夹雪 今天来写写历史老常。来谢谢老常。 老常是我的历史老师,个...

  • R语言rvest爬取天气网中的历史天气信息

    整体思路 我们进入天气网首页:http://lishi.tianqi.com/,以广州2017年09月历史天气为例...

  • 历史

    身处不确定的大时代,我们每天都能见证历史,历史级的台风、历史级的干旱,都在我们身边次第展开,希望今年的极端天气已经...

网友评论

      本文标题:历史天气

      本文链接:https://www.haomeiwen.com/subject/drcbiqtx.html