Skip to content

Commit 394c7df

Browse files
committed
Updated README.md
1 parent 5a48d36 commit 394c7df

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -246,40 +246,40 @@ When looking up an IP address, the response object includes `details.country_nam
246246
>>> import ipinfo
247247
```
248248
```python
249-
# Country Names (`countries`): In-memory map
250-
countries = {
249+
# Country Names: In-memory map
250+
>>> countries = {
251251
"BD": "Bangladesh",
252252
"BE": "Belgium",
253253
"BF": "Burkina Faso",
254254
# ...
255255
}
256256

257-
# EU Countries (`eu_countries`): In-memory list
258-
eu_countries = [
257+
# EU Countries: In-memory list
258+
>>> eu_countries = [
259259
"IE",
260260
"AT",
261261
"LT",
262262
# ...
263263
]
264264

265-
# Country Flags (`countries_flags`): In-memory map
266-
countries_flags = {
265+
# Country Flags: In-memory map
266+
>>> countries_flags = {
267267
"AD": {"emoji": "🇦🇩", "unicode": "U+1F1E6 U+1F1E9"},
268268
"AE": {"emoji": "🇦🇪", "unicode": "U+1F1E6 U+1F1EA"},
269269
"AF": {"emoji": "🇦🇫", "unicode": "U+1F1E6 U+1F1EB"},
270270
# ...
271271
}
272272

273-
# Country Currencies (`countries_currencies`): In-memory map
274-
countries_currencies = {
273+
# Country Currencies: In-memory map
274+
>>> countries_currencies = {
275275
"AD": {"code": "EUR", "symbol": ""},
276276
"AE": {"code": "AED", "symbol": "د.إ"},
277277
"AF": {"code": "AFN", "symbol": "؋"},
278278
# ...
279279
}
280280

281-
# Continents (`continents`): In-memory map
282-
continents = {
281+
# Continents: In-memory map
282+
>>> continents = {
283283
"BD": {"code": "AS", "name": "Asia"},
284284
"BE": {"code": "EU", "name": "Europe"},
285285
"BF": {"code": "AF", "name": "Africa"},

0 commit comments

Comments
 (0)