-
Notifications
You must be signed in to change notification settings - Fork 432
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
40 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,41 @@ | ||
Countries | ||
========= | ||
# Countries | ||
|
||
Lists of Continents & Countries (with languages, capital and currency, native name, calling codes). | ||
Continents & countries: ISO 3166-1 alpha-2 code, name, languages, capital and currency, native name, calling codes. Lists are available in JSON and SQL formats. | ||
|
||
``` | ||
{ | ||
"continents": { | ||
"AF": "Africa", | ||
"AN": "Antarctica", | ||
"AS": "Asia", | ||
"EU": "Europe", | ||
"NA": "North America", | ||
"OC": "Oceania", | ||
"SA": "South America" | ||
}, | ||
"countries": { | ||
"AD": { | ||
"name": "Andorra", | ||
"native": "Andorra", | ||
"phone": "376", | ||
"continent": "EU", | ||
"capital": "EUR", | ||
"currency": "And", | ||
"languages": "ca" | ||
}, | ||
... | ||
} | ||
} | ||
``` | ||
|
||
Also, there's a minimal JSON file with only country by code object: | ||
|
||
``` | ||
{ | ||
... | ||
"UA":"Ukraine", | ||
... | ||
"US":"United States" | ||
... | ||
} | ||
``` |