Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Countries | 5,709 | 399 | 77 | a month ago | 21 | April 04, 2020 | 37 | odbl-1.0 | PHP | |
World countries in JSON, CSV, XML and Yaml. Any help is welcome! | ||||||||||
Countries States Cities Database | 4,908 | 15 days ago | 41 | odbl-1.0 | PHP | |||||
🌍 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 Codes | 1,831 | 4 months ago | August 26, 2016 | 13 | other | Ruby | ||||
ISO 3166-1 country lists merged with their UN Geoscheme regional codes in ready-to-use JSON, XML, CSV data sets | ||||||||||
Covid19 | 1,234 | 3 months ago | 10 | JavaScript | ||||||
JSON time-series of coronavirus cases (confirmed, deaths and recovered) per country - updated daily | ||||||||||
World_countries | 1,092 | 2 months ago | 13 | June 19, 2022 | 8 | other | PHP | |||
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 | ||||||||||
Countries | 949 | 75 | 38 | a month ago | 30 | January 12, 2021 | 17 | mit | TypeScript | |
Countries, Languages & Continents data (capital and currency, native name, calling codes). | ||||||||||
Country Json | 922 | 8 | 3 | a month ago | 12 | March 28, 2021 | 7 | mit | JavaScript | |
A simple data of the world by country each in JSON format. | ||||||||||
Factbook.json | 901 | 1 | 2 | 5 days ago | 1 | November 18, 2015 | cc0-1.0 | |||
World Factbook Country Profiles in JSON - Free Open Public Domain Data - No API Key Required ;-) | ||||||||||
Mongodb Json Files | 387 | 4 years ago | 4 | Shell | ||||||
:package: A curated list of JSON / BSON datasets from the web in order to practice / use in MongoDB | ||||||||||
Country Region Data | 360 | 16 | 23 | 2 months ago | 36 | July 29, 2022 | 28 | mit | JavaScript | |
A source list of countries, regions and shortcodes in JSON and JS format. |
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}`)
);
});
Pull requests adding more projects to this list are welcome, just a few rules:
- [project-name](your-project-url) ([repo](repo-url)): description
The code from this repo is MIT licensed.
The data is under CSSEGISandData/COVID-19 terms of use.