All Projects → pomber → Covid19

pomber / Covid19

JSON time-series of coronavirus cases (confirmed, deaths and recovered) per country - updated daily

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Covid19

Http Fake Backend
Build a fake backend by providing the content of JSON files or JavaScript objects through configurable routes.
Stars: ✭ 253 (-78.5%)
Mutual labels:  api, json, data
Iso 3166 Countries With Regional Codes
ISO 3166-1 country lists merged with their UN Geoscheme regional codes in ready-to-use JSON, XML, CSV data sets
Stars: ✭ 1,372 (+16.57%)
Mutual labels:  json, dataset, data
Browser Compat Data
This repository contains compatibility data for Web technologies as displayed on MDN
Stars: ✭ 3,710 (+215.21%)
Mutual labels:  json, dataset, data
Awesome Json Datasets
A curated list of awesome JSON datasets that don't require authentication.
Stars: ✭ 2,421 (+105.69%)
Mutual labels:  json, dataset, data
Generator Http Fake Backend
Yeoman generator for building a fake backend by providing the content of JSON files or JavaScript objects through configurable routes.
Stars: ✭ 49 (-95.84%)
Mutual labels:  api, json, data
Lumen Api Starter
Quickstarter for Lumen
Stars: ✭ 54 (-95.41%)
Mutual labels:  api, json
Easyjson
Provides an unified JSON access API, you can adapter any JSON library to Gson, Jackson, FastJson with easyjson。 提供了一个JSON门面库,就像slf4j一样。easyjson本身不做json的操作,完全依赖于底层实现库。可以直接使用Easyjson的API,底层的JSON库随时可切换。也可以使用其中某个json的API,然后通过easyjson适配给其他的json库
Stars: ✭ 54 (-95.41%)
Mutual labels:  api, json
Rtimes
R wrapper for NYTimes API for government data - ABANDONED
Stars: ✭ 55 (-95.33%)
Mutual labels:  api, data
Pysgs
📈 Python interface for the Brazilian Central Bank's Time Series Management System (SGS)
Stars: ✭ 60 (-94.9%)
Mutual labels:  dataset, time-series
Flask Restx
Fork of Flask-RESTPlus: Fully featured framework for fast, easy and documented API development with Flask
Stars: ✭ 1,050 (-10.79%)
Mutual labels:  api, json
Http Prompt
An interactive command-line HTTP and API testing client built on top of HTTPie featuring autocomplete, syntax highlighting, and more. https://twitter.com/httpie
Stars: ✭ 8,329 (+607.65%)
Mutual labels:  api, json
Gophergameserver
🏆 Feature packed, easy-to-use game server API for Go back-ends and Javascript clients. Tutorials and examples included!
Stars: ✭ 61 (-94.82%)
Mutual labels:  api, json
Top Pypi Packages
A regular dump of the most-downloaded packages from PyPI
Stars: ✭ 53 (-95.5%)
Mutual labels:  json, data
Json Api Dart
JSON:API client for Dart/Flutter
Stars: ✭ 53 (-95.5%)
Mutual labels:  api, json
Jsonapi
[Bolt Extension] JSON API for Bolt CMS
Stars: ✭ 55 (-95.33%)
Mutual labels:  api, json
Cucumber Api
API validator in BBD style with Cucumber
Stars: ✭ 50 (-95.75%)
Mutual labels:  api, json
Sirvy
🔗 Kirby Services API
Stars: ✭ 59 (-94.99%)
Mutual labels:  api, json
Fipe Json
🚘 FIPE API - Listagem com preço médio de veículos: carro, moto e caminhão.
Stars: ✭ 71 (-93.97%)
Mutual labels:  api, json
Fredr
An R client for the Federal Reserve Economic Data (FRED) API
Stars: ✭ 61 (-94.82%)
Mutual labels:  api, data
Colour
Colour Science for Python
Stars: ✭ 1,131 (-3.91%)
Mutual labels:  dataset, data

Transforms the data from CSSEGISandData/COVID-19 into a json file. Available at https://pomber.github.io/covid19/timeseries.json. Updated three times a day using GitHub Actions.

The json contains the number of Coronavirus confirmed cases, deaths, and recovered cases for every country and every day since 2020-1-22:

{
  "Thailand": [
    {
      "date": "2020-1-22",
      "confirmed": 2,
      "deaths": 0,
      "recovered": 0
    },
    {
      "date": "2020-1-23",
      "confirmed": 3,
      "deaths": 0,
      "recovered": 0
    },
    ...
  ],
  ...
}

For example, if you want to use it from a web site:

fetch("https://pomber.github.io/covid19/timeseries.json")
  .then(response => response.json())
  .then(data => {
    data["Argentina"].forEach(({ date, confirmed, recovered, deaths }) =>
      console.log(`${date} active cases: ${confirmed - recovered - deaths}`)
    );
  });

Projects using this dataset (+ add yours)

APIs

Tutorials

Visualizations

Analysis

Adding your project to the list

Pull requests adding more projects to this list are welcome, just a few rules:

  • Add only open source projects
  • Make sure the project cite this repo as a data source (with a link)
  • Follow the same order as the rest of the list - [project-name](your-project-url) ([repo](repo-url)): description
  • Try not to add extra blank lines, it breaks the formatting

👉 add a new project to the list

License

The code from this repo is MIT licensed.
The data is under CSSEGISandData/COVID-19 terms of use.

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].