Covid19

JSON time-series of coronavirus cases (confirmed, deaths and recovered) per country - updated daily
Alternatives To Covid19
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Countries5,70939977a month ago21April 04, 202037odbl-1.0PHP
World countries in JSON, CSV, XML and Yaml. Any help is welcome!
Countries States Cities Database4,908
15 days ago41odbl-1.0PHP
🌍 Discover our global repository of countries, states, and cities! 🏙️ Get comprehensive data in JSON, SQL, XML, YAML, and CSV formats. Access ISO2, ISO3 codes, country code, capital, native language, timezones (for countries), and more. #countries #states #cities
Iso 3166 Countries With Regional Codes1,831
4 months agoAugust 26, 201613otherRuby
ISO 3166-1 country lists merged with their UN Geoscheme regional codes in ready-to-use JSON, XML, CSV data sets
Covid191,234
3 months ago10JavaScript
JSON time-series of coronavirus cases (confirmed, deaths and recovered) per country - updated daily
World_countries1,092
2 months ago13June 19, 20228otherPHP
Constantly updated lists of world countries and their associated alpha-2, alpha-3 and numeric country codes as defined by the ISO 3166 standard, available in CSV, JSON , PHP, SQL and XML formats, in multiple languages and with national flags included; also available are the ISO 3166-2 codes of provinces/ states associated with the countries
Countries9497538a month ago30January 12, 202117mitTypeScript
Countries, Languages & Continents data (capital and currency, native name, calling codes).
Country Json92283a month ago12March 28, 20217mitJavaScript
A simple data of the world by country each in JSON format.
Factbook.json901125 days ago1November 18, 2015cc0-1.0
World Factbook Country Profiles in JSON - Free Open Public Domain Data - No API Key Required ;-)
Mongodb Json Files387
4 years ago4Shell
:package: A curated list of JSON / BSON datasets from the web in order to practice / use in MongoDB
Country Region Data36016232 months ago36July 29, 202228mitJavaScript
A source list of countries, regions and shortcodes in JSON and JS format.
Alternatives To Covid19
Select To Compare


Alternative Project Comparisons
Readme

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.

Popular Countries Projects
Popular Json Projects
Popular Mapping Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Json
Dataset
Countries
Time Series