Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Where can I get a list of easily parseable country codes and names? Note: 2 letter codes wanted. Examples:

au,Australia

uk,United Kingdom

us,United States

etc

share|improve this question
1  
thanks for this question and answer both. but i wonder why someone so called expert from SO argue this question as a dumb question.This is very useful question and answer for me i also upvote it, but there are so many idiots and boasty people on so who always find such a question to criticize.I am boarded of it and this post is answer to them all nonsense so called expert. after all the final goal of SO and its post to become a useful to their user.thanks again . – Mihir Jun 14 at 9:25
@Mihir Who called it a dumb question? – Click Upvote Jun 15 at 17:38
1  
update there are so many so called experts on the so who did it several times for my questions and some one others question on so .god bless them all. – Mihir Jun 16 at 12:46

5 Answers

up vote 20 down vote accepted

This is what I was looking for.

share|improve this answer
Thanks! Exactly what my DB was looking for. – Volvox Aug 10 '12 at 20:02
2  
GitHub repo with humanized country names in multiple languages in multiple formats: github.com/umpirsky/country-list/blob/master/country/cldr/en/… (see my answer below) – David Hu Mar 23 at 0:00

In case it can help anyone, I just took the list of ISO 3166 country codes and names in English and French and put them together in CSV and SQL format: http://blog.plsoucy.com/2012/04/iso-3166-country-code-list-csv-sql/

While doing that, I fixed the capitalization so names aren't all uppercase, and renamed a few countries to the name that is used on Wikipedia, so "MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF" became "Macedonia" for example. That should allow for shorter lists.

Feel free to use these if you want.

share|improve this answer
1  
There's a GitHub repo with humanized country names in multiple languages in multiple formats: github.com/umpirsky/country-list/blob/master/country/cldr/en/… (see my answer below) – David Hu Mar 23 at 0:03

Take a look at ISO http://www.iso.org/iso/home/standards/country_codes/country_names_and_code_elements.htm It is not CSV but you can easily copy and paste it into a file, or you can buy the file from ISO

updated the link

share|improve this answer
Link is now broken. :( – Jason Oct 3 '12 at 15:02
updated with a new link – SQLMenace Oct 3 '12 at 15:05

Here's a maintained repo of country codes with friendly country names in multiple languages and in many formats, including text, CSV, JSON, YAML, XML, SQL, and others:

https://github.com/umpirsky/country-list

The English CSV dump from the above repo: https://github.com/umpirsky/country-list/blob/master/country/cldr/en/country.csv

share|improve this answer

I have recently worked on list. Enjoy it. Master Data

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.