All Projects → dakula009 → China_CoronaVirus_Data_Miner

dakula009 / China_CoronaVirus_Data_Miner

Licence: other
Collects officially published daily stats for the corona-virus (China only) 收集新冠状病毒中国每日疫情数据,精确到地级

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to China CoronaVirus Data Miner

coviddata
Daily COVID-19 statistics by country, region, and city
Stars: ✭ 49 (+104.17%)
Mutual labels:  coronavirus, coronavirus-tracking, coronavirus-real-time, covid-19
coronavirusrd
Web app to show information about the current cases of COVID 19 in Dominican Republic
Stars: ✭ 13 (-45.83%)
Mutual labels:  coronavirus, coronavirus-tracking, coronavirus-real-time, covid-19
CoronaVirusDatabase
A repository for analyzing references and database of "gisanddata.maps.arcgis.com" website for Corona Virus.
Stars: ✭ 38 (+58.33%)
Mutual labels:  coronavirus, coronavirus-tracking, coronavirus-real-time, covid-19
covid19-api
Covid19 Data API (JSON) - LIVE
Stars: ✭ 20 (-16.67%)
Mutual labels:  coronavirus, coronavirus-tracking, coronavirus-real-time, covid-19
COVID19
A web app to display the live graphical state-wise reported corona cases in India so far. It also shows the latest news for COVID-19. Stay Home, Stay Safe!
Stars: ✭ 122 (+408.33%)
Mutual labels:  coronavirus, coronavirus-tracking, coronavirus-real-time, covid-19
covid-19-status
Menu bar widget for MacOS with COVID-19 statistics
Stars: ✭ 50 (+108.33%)
Mutual labels:  coronavirus, coronavirus-tracking, coronavirus-real-time, covid-19
CoronaVirusOutbreakAPI
A tiny and small program to crawler and analyze outbreak of COVID-19 in world and every country using PHP.
Stars: ✭ 20 (-16.67%)
Mutual labels:  coronavirus, coronavirus-tracking, coronavirus-real-time, covid-19
Corona Cli
🦠 Track the Coronavirus disease (COVID-19) in the command line. Worldwide for all countries, for one country, and the US States. Fast response time (< 100ms). To chat: https://twitter.com/MrAhmadAwais/
Stars: ✭ 1,812 (+7450%)
Mutual labels:  coronavirus, coronavirus-tracking, coronavirus-real-time, covid-19
COVID-19-DETECTION
Detect Covid-19 with Chest X-Ray Data
Stars: ✭ 43 (+79.17%)
Mutual labels:  coronavirus, coronavirus-tracking, coronavirus-real-time, covid-19
coronainfobd
Real-time corona-virus tracker of Bangladesh 🇧🇩 which includes latest updates, data visualization, public awareness from WHO and some advice to aware people. 🥰❤
Stars: ✭ 46 (+91.67%)
Mutual labels:  coronavirus, coronavirus-tracking, coronavirus-real-time, covid-19
CoronaVirus-2019-nCoV-Live-Tracking
CoronaVirus(COVID-19) Live Map Tracker Android Kotlin App
Stars: ✭ 43 (+79.17%)
Mutual labels:  coronavirus, coronavirus-tracking, coronavirus-real-time, covid-19
Coronavirus
Java API Wrapper for tracking coronavirus (COVID-19, SARS-CoV-2) via https://git.io/Jvoep
Stars: ✭ 16 (-33.33%)
Mutual labels:  coronavirus, coronavirus-real-time, covid-19
COVID19MagyarEpi
A magyarországi koronavírus járvány valós idejű, kvantitatív epidemiológiája.
Stars: ✭ 19 (-20.83%)
Mutual labels:  coronavirus, coronavirus-tracking, coronavirus-real-time
coronastats
A simple web app which shows updates about COVID-19
Stars: ✭ 18 (-25%)
Mutual labels:  coronavirus, coronavirus-tracking, coronavirus-real-time
COVID-19-SG
Singapore & Malaysia COVID-19 data from multiple data sources (Zaobao, MOH)
Stars: ✭ 17 (-29.17%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19
covid19-br-info
Coronavirus frontend info about Brazil's states and cities
Stars: ✭ 12 (-50%)
Mutual labels:  coronavirus, coronavirus-real-time, covid-19
aarogya seva
A beautiful 😍 covid-19 app with self - assessment and more.
Stars: ✭ 118 (+391.67%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19
Cough-signal-processing
Different methods and techniques for features extraction from audio
Stars: ✭ 42 (+75%)
Mutual labels:  coronavirus, coronavirus-real-time, covid-19
COVID-19-STAT
A web application to keep track of COVID-19 numbers & growth across the world
Stars: ✭ 19 (-20.83%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19
COVID19Py
A tiny Python package for easy access to up-to-date Coronavirus (COVID-19, SARS-CoV-2) cases data.
Stars: ✭ 86 (+258.33%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19

China_CoronaVirus_Data_Miner

This simple python script collects daily data from the coronavirus status updates published by Tecent.

Data source: https://news.qq.com/zt2020/page/feiyan.htm

Note: It focuses on China only.

The script grabs the data and save them into three seperate csv files in the path where the script is stored.

The data collected contain information at country , province and prefecture levels. For country level data, it collects all data from 1/13/2020 to the time being. For province and prefecture level data, it collects data for the day ONLY since there is no historical data available from the data source.

Fields of the country level output are as follows:

  1. Date (日期)
  2. Accumulated Confirmed (累计确诊)
  3. Suspect (疑似)
  4. Dead (死亡)
  5. Heal (治愈)
  6. Current Confirmed (现有确诊)
  7. Current Severe (现有重症)
  8. Death Rate (死亡率)
  9. Heal Rate (治愈率)

Fields of the province level output are as follows:

  1. Province (省)
  2. Daily Added Confirmed (新增确诊)
  3. Accumulated Confirmed (累计确诊)
  4. Dead (死亡)
  5. Healed (治愈)
  6. Death Rate (死亡率)
  7. Heal Rate (治愈率)

Fields of the prefecture level output are as follows:

  1. Province (省)
  2. Prefecture (市)
  3. Daily Added Confirmed (新增确诊)
  4. Accumulated Confirmed (累计确诊)
  5. Dead (死亡)
  6. Healed (治愈)
  7. Death Rate (死亡率)
  8. Heal Rate (治愈率)

To run the script, please make sure you are using python 3.x, and have libraries of pandas and requests installed.

A set of sample results is also provided.

Note: It is recommended running the data collection script on a daily basis. According to Tecent, they normally update data between 7:00 - 10:00 am UTC+8 everyday, so it would be better to run the script after 10:00 am UTC+ 8 to avoid missing data.

武汉加油! 中国加油!

Update 02-06-20: Removed "Suspect" as the original data do not provide such info for prefecture level.

Update 02-07-20: Added a new capability to get province level data.

Update 02-14-20: Added a new field '新增确认' for daily added confirmed cases, as the data source now provides such info.

Update 02-15-20: Added country level data (current + historical); Added death rate and heal rate to all levels.

Update 02-26-20: Updated the script to cope with recent changes on data source format

⚠️ Disclaimer / Warning! This repository/project is intended for Educational/Research Purposes ONLY. Please do not use it for any other non-educational or non-research reason and definitely don't depend on it for anything important!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].