Skip to content

Commit de5e4c2

Browse files
committed
README update
1 parent 902749e commit de5e4c2

File tree

1 file changed

+40
-3
lines changed

1 file changed

+40
-3
lines changed

README.md

Lines changed: 40 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,41 @@
1-
Countries
2-
=========
1+
# Countries
32

4-
Lists of Continents & Countries (with languages, capital and currency, native name, calling codes).
3+
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.
4+
5+
```
6+
{
7+
"continents": {
8+
"AF": "Africa",
9+
"AN": "Antarctica",
10+
"AS": "Asia",
11+
"EU": "Europe",
12+
"NA": "North America",
13+
"OC": "Oceania",
14+
"SA": "South America"
15+
},
16+
"countries": {
17+
"AD": {
18+
"name": "Andorra",
19+
"native": "Andorra",
20+
"phone": "376",
21+
"continent": "EU",
22+
"capital": "EUR",
23+
"currency": "And",
24+
"languages": "ca"
25+
},
26+
...
27+
}
28+
}
29+
```
30+
31+
Also, there's a minimal JSON file with only country by code object:
32+
33+
```
34+
{
35+
...
36+
"UA":"Ukraine",
37+
...
38+
"US":"United States"
39+
...
40+
}
41+
```

0 commit comments

Comments
 (0)