diff --git a/qinghai/2020-02-08_275.html b/qinghai/2020-02-08_275.html new file mode 100644 index 0000000..f5ee8b5 --- /dev/null +++ b/qinghai/2020-02-08_275.html @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + +国家卫生健康委关于新型冠状病毒肺炎暂命名事宜的通知 + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

通知公告

+
您现在所在位置: +首页 > 新型冠状病毒肺炎疫情防控 > 通知公告 +
+
+
+
+
国家卫生健康委关于新型冠状病毒肺炎暂命名事宜的通知
+
+
+ 发布时间: + 2020-02-08 + +来源: + 医政医管局 + + + +
+
+
+

国卫医函〔2020〕42号 
+

+

+

各省、自治区、直辖市人民政府,新疆生产建设兵团,国务院应对新型冠状病毒肺炎疫情联防联控机制成员:
+  现决定将“新型冠状病毒感染的肺炎”暂命名为“新型冠状病毒肺炎”,简称“新冠肺炎”;英文名称为“Novel Coronavirus Pneumonia”,简称“NCP”。
+

+

+

+

国家卫生健康委

+

2020年2月7日

+

+

  (信息公开形式:主动公开)

+
+
+ +
+ + 分享到   +
+
+
+
+ +
+ + +
+
+
+

地址:北京市西城区西直门外南路1号  邮编:100044  电话:010-68792114  ICP备案编号:京ICP备18052910号  京公网安备 11010202000005号

+

中华人民共和国国家卫生健康委员会  版权所有  技术支持:国家卫生健康委员会统计信息中心  网站标识码:bm24000006

+
+
+ +normal \ No newline at end of file diff --git a/qinghai/scrape-iframe.py b/qinghai/scrape-iframe.py new file mode 100644 index 0000000..a9a6f6d --- /dev/null +++ b/qinghai/scrape-iframe.py @@ -0,0 +1,24 @@ +"""Script to scrape contents from a specific article. + +This is for +http://www.nhc.gov.cn/xcs/zhengcwj/202002/18c1bb43965a4492907957875de02ae7.shtml. + +For whatever reason, this article is implemented as an iframe, so +requires downloading with a full-featured browser. It's just one +though, so let's parse it. +""" + +from bs4 import BeautifulSoup + + +def main(): + """Scrape html site.""" + with open("2020-02-08_275.html", "r") as f: + soup = BeautifulSoup(f.read(), "html.parser") + text = soup.find(class_="w1024").get_text().strip() + with open("articles-qinghai/2020-02-08_275.txt", "w+") as f: + f.write(text) + + +if __name__ == "__main__": + main()