Skip to content

Instantly share code, notes, and snippets.

@hamidfzm
Created July 18, 2015 19:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hamidfzm/26541efea80aee7b0bad to your computer and use it in GitHub Desktop.
Save hamidfzm/26541efea80aee7b0bad to your computer and use it in GitHub Desktop.
All country names with their two word name
# -*- coding: utf-8 -*-
__author__ = 'Hamid FzM'
persian_country_names = [
['IR', unicode('ایران', 'utf8')],
['AZ', unicode('آذربایجان', 'utf8')],
['AR', unicode('آرژانتین', 'utf8')],
['ZA', unicode('آفریقای جنوبی', 'utf8')],
['AL', unicode('آلبانی', 'utf8')],
['DE', unicode('آلمان', 'utf8')],
['AI', unicode('آنگولا', 'utf8')],
['AT', unicode('اتریش', 'utf8')],
['ET', unicode('اتیوپی', 'utf8')],
['JO', unicode('اردن', 'utf8')],
['AM', unicode('ارمنستان', 'utf8')],
['UY', unicode('اروگوئه', 'utf8')],
['ER', unicode('اریتره', 'utf8')],
['UZ', unicode('ازبکستان', 'utf8')],
['AU', unicode('استرالیا', 'utf8')],
['EE', unicode('استونی', 'utf8')],
['SK', unicode('اسلواکی', 'utf8')],
['SI', unicode('اسلوونی', 'utf8')],
['ES', unicode('اسپانیا', 'utf8')],
['AF', unicode('افغانستان', 'utf8')],
['DZ', unicode('الجزایر', 'utf8')],
['SV', unicode('السالوادور', 'utf8')],
['AE', unicode('امارات متحده عربی', 'utf8')],
['ID', unicode('اندونزی', 'utf8')],
['UA', unicode('اوکراین', 'utf8')],
['UG', unicode('اوگاندا', 'utf8')],
['EC', unicode('اکوادور', 'utf8')],
['US', unicode('ایالات متحده', 'utf8')],
['IT', unicode('ایتالیا', 'utf8')],
['IS', unicode('ایسلند', 'utf8')],
['BS', unicode('باهاما', 'utf8')],
['BH', unicode('بحرین', 'utf8')],
['BR', unicode('برزیل', 'utf8')],
['MM', unicode('برمه', 'utf8')],
['BM', unicode('برمودا', 'utf8')],
['BN', unicode('برونئی', 'utf8')],
['GB', unicode('بریتانیا', 'utf8')],
['BY', unicode('بلاروس', 'utf8')],
['BG', unicode('بلغارستان', 'utf8')],
['BE', unicode('بلژیک', 'utf8')],
['BZ', unicode('بلیز', 'utf8')],
['BD', unicode('بنگلادش', 'utf8')],
['BT', unicode('بوتان', 'utf8')],
['BF', unicode('بورکینافاسو', 'utf8')],
['BA', unicode('بوسنی و هرزگوین', 'utf8')],
['BO', unicode('بولیوی', 'utf8')],
['TJ', unicode('تاجیکستان', 'utf8')],
['TZ', unicode('تانزانیا', 'utf8')],
['TH', unicode('تایلند', 'utf8')],
['TW', unicode('تایوان', 'utf8')],
['TM', unicode('ترکمنستان', 'utf8')],
['TR', unicode('ترکیه', 'utf8')],
['TN', unicode('تونس', 'utf8')],
['TG', unicode('توگو', 'utf8')],
['TL', unicode('تیمور شرقی', 'utf8')],
['JM', unicode('جامائیکا', 'utf8')],
['IE', unicode('جمهوری ایرلند', 'utf8')],
['MK', unicode('جمهوری مقدونیه', 'utf8')],
['CZ', unicode('جمهوری چک', 'utf8')],
['CD', unicode('جمهوری کنگو', 'utf8')],
['DK', unicode('دانمارک', 'utf8')],
['RW', unicode('روآندا', 'utf8')],
['RU', unicode('روسیه', 'utf8')],
['RO', unicode('رومانی', 'utf8')],
['ZM', unicode('زامبیا', 'utf8')],
['NZ', unicode('زلاندنو', 'utf8')],
['ZW', unicode('زیمباوه', 'utf8')],
['CI', unicode('ساحل عاج', 'utf8')],
['LK', unicode('سری‌لانکا', 'utf8')],
['SN', unicode('سنگال', 'utf8')],
['SG', unicode('سنگاپور', 'utf8')],
['SE', unicode('سوئد', 'utf8')],
['CH', unicode('سوئیس', 'utf8')],
['SD', unicode('سودان', 'utf8')],
['SY', unicode('سوریه', 'utf8')],
['SO', unicode('سومالی', 'utf8')],
['SL', unicode('سیرالئون', 'utf8')],
['CL', unicode('شیلی', 'utf8')],
['RS', unicode('صربستان', 'utf8')],
['IQ', unicode('عراق', 'utf8')],
['SA', unicode('عربستان سعودی', 'utf8')],
['OM', unicode('عمان', 'utf8')],
['GH', unicode('غنا', 'utf8')],
['FR', unicode('فرانسه', 'utf8')],
['PS', unicode('فلسطین', 'utf8')],
['FI', unicode('فنلاند', 'utf8')],
['FJ', unicode('فیجی', 'utf8')],
['PH', unicode('فیلیپین', 'utf8')],
['CY', unicode('قبرس', 'utf8')],
['KG', unicode('قرقیزستان', 'utf8')],
['KZ', unicode('قزاقستان', 'utf8')],
['QA', unicode('قطر', 'utf8')],
['LB', unicode('لبنان', 'utf8')],
['LV', unicode('لتونی', 'utf8')],
['PL', unicode('لهستان', 'utf8')],
['LU', unicode('لوکزامبورگ', 'utf8')],
['LR', unicode('لیبریا', 'utf8')],
['LY', unicode('لیبی', 'utf8')],
['LT', unicode('لیتوانی', 'utf8')],
['MG', unicode('ماداگاسکار', 'utf8')],
['MW', unicode('مالاوی', 'utf8')],
['MT', unicode('مالت', 'utf8')],
['MV', unicode('مالدیو', 'utf8')],
['MY', unicode('مالزی', 'utf8')],
['ML', unicode('مالی', 'utf8')],
['MO', unicode('ماکائو', 'utf8')],
['HU', unicode('مجارستان', 'utf8')],
['MA', unicode('مراکش', 'utf8')],
['EG', unicode('مصر', 'utf8')],
['MN', unicode('مغولستان', 'utf8')],
['MR', unicode('موریتانی', 'utf8')],
['MZ', unicode('موزامبیک', 'utf8')],
['MC', unicode('موناکو', 'utf8')],
['MX', unicode('مکزیک', 'utf8')],
['NA', unicode('نامیبیا', 'utf8')],
['NO', unicode('نروژ', 'utf8')],
['NP', unicode('نپال', 'utf8')],
['NE', unicode('نیجر', 'utf8')],
['NG', unicode('نیجریه', 'utf8')],
['NI', unicode('نیکاراگوئه', 'utf8')],
['HT', unicode('هائیتی', 'utf8')],
['NL', unicode('هلند', 'utf8')],
['IN', unicode('هند', 'utf8')],
['HN', unicode('هندوراس', 'utf8')],
['HK', unicode('هنگ کنگ', 'utf8')],
['VA', unicode('واتیکان', 'utf8')],
['VU', unicode('وانواتو', 'utf8')],
['VE', unicode('ونزوئلا', 'utf8')],
['VN', unicode('ویتانم', 'utf8')],
['PY', unicode('پاراگوئه', 'utf8')],
['PA', unicode('پاناما', 'utf8')],
['PK', unicode('پاکستان', 'utf8')],
['PT', unicode('پرتغال', 'utf8')],
['PE', unicode('پرو', 'utf8')],
['PR', unicode('پورتوریکو', 'utf8')],
['TD', unicode('چاد', 'utf8')],
['CN', unicode('چین', 'utf8')],
['JP', unicode('ژاپن', 'utf8')],
['CR', unicode('کاستاریکا', 'utf8')],
['KH', unicode('کامبوج', 'utf8')],
['CM', unicode('کامرون', 'utf8')],
['CA', unicode('کانادا', 'utf8')],
['KR', unicode('کره جنوبی', 'utf8')],
['KP', unicode('کره شمالی', 'utf8')],
['HR', unicode('کرواسی', 'utf8')],
['CO', unicode('کلمبیا', 'utf8')],
['CG', unicode('کنگو', 'utf8')],
['KE', unicode('کنیا', 'utf8')],
['CU', unicode('کوبا', 'utf8')],
['KM', unicode('کومور', 'utf8')],
['KW', unicode('کویت', 'utf8')],
['GA', unicode('گابون', 'utf8')],
['GM', unicode('گامبیا', 'utf8')],
['GE', unicode('گرجستان', 'utf8')],
['GD', unicode('گرنادا', 'utf8')],
['GL', unicode('گرینلند', 'utf8')],
['GT', unicode('گوآتمالا', 'utf8')],
['GU', unicode('گوآم', 'utf8')],
['GY', unicode('گویان', 'utf8')],
['GN', unicode('گینه', 'utf8')],
['YE', unicode('یمن', 'utf8')],
['GR', unicode('یونان', 'utf8')],
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment