Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

5 Answers

up vote 19 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
1  
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.