1000字范文,内容丰富有趣,学习的好帮手!
1000字范文 > 使用Python获取地震网数据并存入MySQL数据库

使用Python获取地震网数据并存入MySQL数据库

时间:2024-05-01 05:19:56

相关推荐

使用Python获取地震网数据并存入MySQL数据库

1.所需环境

python环境,我使用的是python3.9.2,pycharm工具,以及MySQL5.7。大家可以自行搜索安装下载教程。

使用的第三方库pymsql,requests_html打开win+r输入以下命令安装。

pip install pymysqlpip install requests_html

中国地震台网——历史查询http://www./history

具体代码如下

from requests_html import HTMLSessionfrom lxml import etreeimport pymysqlimport jsonclass Myspider():def __init__(self):self.url = 'http://www./ajax/search?page={}&&start=1950-01-01&&end=-02-28&&jingdu1=&&jingdu2=&&weidu1=&&weidu2=&&height1=&&height2=&&zhenji1=&&zhenji2=&'self.session = HTMLSession()self.headers = {'User - Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','Cookie': 'PHPSESSID = c5c60a38a7bf98c06236f6bc55a0146c','Host': 'www.','Referer': 'http: // www. / history','X-Requested-With': 'XMLHttpRequest'}host = "localhost"port = 3306db = '你自己的数据库名'user = '数据库账号'password = "数据库密码"self.conn = pymysql.connect(host=host, port=port, db=db, user=user, password=password)self.cursor = self.conn.cursor()def parse(self):for page in range(1, 21):response = self.session.get(self.url.format(page), headers=self.headers)response.encoding = 'utf-8'data = eval(response.text)for a in data['shuju']:magitude = a['M']time = a['SAVE_TIME']latitude = a['EPI_LAT']longitude = a['EPI_LON']depth = a['EPI_DEPTH']location = a['LOCATION_C']data1 = (magitude, time, latitude, longitude, depth, location)self.saveMySql(data1)def saveMySql(self, data1):self.cursor.execute("INSERT INTO test VALUES ('%s', '%s', '%s', '%s', '%s', '%s')" % (data1[0], data1[1], data1[2], data1[3], data1[4], data1[5]))mit()def run(self):self.parse()self.cursor.close()self.conn.close()if __name__ == '__main__':spider = Myspider()spider.run()

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。