博客
关于我
通过脚本获取数据 新型冠状病毒 2019-nCoV 的相关数据。
阅读量:161 次
发布时间:2019-02-28

本文共 3388 字,大约阅读时间需要 11 分钟。

数据来源

(以下数据仅供参考)

脚本文件:app.js

                const express = require('express');                const request = require('request');                const axios = require('axios');                const fs = require('fs');                const app = express();                const url = 'https://3g.dxy.cn/newh5/view/pneumonia';                                const getStatisticsService = (data) => {                    const statisticObj = JSON.parse(data.match(/window.getStatisticsService = (.*?)}catch/)[1]);                    fs.writeFileSync('./data/statistic.json', JSON.stringify(statisticObj, null, 2), (err) => {                        console.log('写入成功');                    });                };                                const getAreaStat = (data) => {                    const areaObj = JSON.parse(data.match(/window.getAreaStat = (.*?)}catch/)[1]);                    fs.writeFileSync('./data/province.json', JSON.stringify(areaObj, null, 2), (err) => {                        console.log('写入成功');                    });                };                                axios.request(url).then(({ data: html }) => {                    getStatisticsService(html);                    getAreaStat(html);                });                                app.listen(3000, () => {                    console.log('app listening port is 3000');                });            

statistic.json文件:

                {                    "id": 1,                    "createTime": 1579537899000,                    "modifyTime": 1580140453000,                    "infectSource": "野生动物,可能为中华菊头蝠",                    "passWay": "未完全掌握,存在人传人、医务人员感染、一定范围社区传播",                    "imgUrl": "https://img1.dxycdn.com/2020/0123/733/3392575782185696736-73.jpg",                    "dailyPic": "https://img1.dxycdn.com/2020/0127/350/3393218957833514634-73.jpg",                    "summary": "",                    "deleted": false,                    "countRemark": "",                    "confirmedCount": 2857,                    "suspectedCount": 5794,                    "curedCount": 56,                    "deadCount": 82,                    "virus": "新型冠状病毒 2019-nCoV",                    "remark1": "易感人群: 暂时不明,病毒存在变异可能",                    "remark2": "潜伏期: 1~14 天均有,平均 10 天,潜伏期内存在传染性",                    "remark3": "",                    "remark4": "",                    "remark5": "",                    "generalRemark": "疑似病例数来自国家卫健委数据,目前为全国数据,未分省市自治区等",                    "abroadRemark": ""                }            

province.json文件:

                {                    "provinceName": "湖北省",                    "provinceShortName": "湖北",                    "confirmedCount": 1423,                    "suspectedCount": 0,                    "curedCount": 45,                    "deadCount": 76,                    "comment": "",                    "cities": [                        {                            "cityName": "武汉",                            "confirmedCount": 698,                            "suspectedCount": 0,                            "curedCount": 42,                            "deadCount": 63                        }                    ]                }            

转载地址:http://ilfj.baihongyu.com/

你可能感兴趣的文章
Oracle面试题:Oracle中truncate和delete的区别
查看>>
Oracle:ORA-00911: 无效字符
查看>>
TCP基本入门-简单认识一下什么是TCP
查看>>
Orcale表被锁
查看>>
org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned
查看>>
org.apache.poi.hssf.util.Region
查看>>
org.apache.zookeeper.KeeperException$ConnectionLossException: KeeperErrorCode = ConnectionLoss for /
查看>>
org.hibernate.HibernateException: Unable to get the default Bean Validation factory
查看>>
org.springframework.orm.hibernate3.support.OpenSessionInViewFilter
查看>>
org.springframework.orm.hibernate3.support.OpenSessionInViewFilter
查看>>
org.springframework.web.multipart.MaxUploadSizeExceededException: Maximum upload size exceeded
查看>>
org.tinygroup.serviceprocessor-服务处理器
查看>>
org/eclipse/jetty/server/Connector : Unsupported major.minor version 52.0
查看>>
org/hibernate/validator/internal/engine
查看>>
SQL-36 创建一个actor_name表,将actor表中的所有first_name以及last_name导入改表。
查看>>
ORM sqlachemy学习
查看>>
Ormlite数据库
查看>>
orm总结
查看>>
os.path.join、dirname、splitext、split、makedirs、getcwd、listdir、sep等的用法
查看>>
os.system 在 Python 中不起作用
查看>>