[Help] ISO code list generator?

Caffrey EST

Newbie
Joined
Sep 3, 2018
Messages
2
Reaction score
0
Hi there!

I am in casino affiliate business and i have web-page with restriction system, where each in each casino i have restricted country list in which country IP-s casinos are unavaible. Just figuring is there any tool avaible where i can insert all countries, for example: Afghanistan, Bahrain, Chile, Denmark and it will generate list like AF|BH|CL|DK

Maybe You have some suggestions/ideas?

Best wishes
Kuno
 
Take my golang code, you can easily convert it to any language


Code:
//Country struct
type Country struct {
    Code string
    Name string
}



//GetCountries list
func GetCountries() []Country {
    return []Country{
        Country{Code: "DR", Name: "Default Rate"},
        Country{Code: "AD", Name: "Andorra"},
        Country{Code: "AE", Name: "United Arab Emirates"},
        Country{Code: "AF", Name: "Afghanistan"},
        Country{Code: "AG", Name: "Antigua & Barbuda"},
        Country{Code: "AI", Name: "Anguilla"},
        Country{Code: "AL", Name: "Albania"},
        Country{Code: "AM", Name: "Armenia"},
        Country{Code: "AN", Name: "Netherlands Antilles"},
        Country{Code: "AO", Name: "Angola"},
        Country{Code: "AR", Name: "Argentina"},
        Country{Code: "AS", Name: "American Samoa"},
        Country{Code: "AT", Name: "Austria"},
        Country{Code: "AU", Name: "Australia"},
        Country{Code: "AW", Name: "Aruba"},
        Country{Code: "AZ", Name: "Azerbaijan"},
        Country{Code: "BA", Name: "Bosnia-Hercegovina"},
        Country{Code: "BB", Name: "Barbados"},
        Country{Code: "BD", Name: "Bangladesh"},
        Country{Code: "BE", Name: "Belgium"},
        Country{Code: "BF", Name: "Burkina Faso"},
        Country{Code: "BG", Name: "Bulgaria"},
        Country{Code: "BH", Name: "Bahrain"},
        Country{Code: "BI", Name: "Burundi"},
        Country{Code: "BJ", Name: "Benin"},
        Country{Code: "BM", Name: "Bermuda"},
        Country{Code: "BN", Name: "Brunei Darussalam"},
        Country{Code: "BO", Name: "Bolivia"},
        Country{Code: "BR", Name: "Brazil"},
        Country{Code: "BS", Name: "Bahamas"},
        Country{Code: "BT", Name: "Bhutan"},
        Country{Code: "BU", Name: "Burma"},
        Country{Code: "BW", Name: "Botswana"},
        Country{Code: "BY", Name: "Belarus"},
        Country{Code: "BZ", Name: "Belize"},
        Country{Code: "CA", Name: "Canada"},
        Country{Code: "CC", Name: "Cocos Islands"},
        Country{Code: "CD", Name: "Congo, Dem Rep of (Kinshasa)"},
        Country{Code: "CF", Name: "Central African Republic"},
        Country{Code: "CG", Name: "Congo (Brazzaville)"},
        Country{Code: "CH", Name: "Switzerland"},
        Country{Code: "CI", Name: "Ivory Coast"},
        Country{Code: "CK", Name: "Cook Islands"},
        Country{Code: "CL", Name: "Chile"},
        Country{Code: "CM", Name: "Cameroon"},
        Country{Code: "CN", Name: "China"},
        Country{Code: "CO", Name: "Colombia"},
        Country{Code: "CR", Name: "Costa Rica"},
        Country{Code: "CS", Name: "Czechoslovakia (Do Not Use)"},
        Country{Code: "CU", Name: "Cuba"},
        Country{Code: "CV", Name: "Cape Verde"},
        Country{Code: "CX", Name: "Christmas Islands (Indian Ocn)"},
        Country{Code: "CY", Name: "Cyprus"},
        Country{Code: "CZ", Name: "Czech Republic"},
        Country{Code: "DE", Name: "Germany"},
        Country{Code: "DJ", Name: "Djibouti"},
        Country{Code: "DK", Name: "Denmark"},
        Country{Code: "DM", Name: "Dominica"},
        Country{Code: "DO", Name: "Dominican Republic"},
        Country{Code: "DZ", Name: "Algeria"},
        Country{Code: "EC", Name: "Ecuador"},
        Country{Code: "EE", Name: "Estonia"},
        Country{Code: "EG", Name: "Egypt"},
        Country{Code: "EH", Name: "Western Sahara"},
        Country{Code: "ER", Name: "Eritrea"},
        Country{Code: "ES", Name: "Spain"},
        Country{Code: "ET", Name: "Ethiopia"},
        Country{Code: "FI", Name: "Finland"},
        Country{Code: "FJ", Name: "Fiji"},
        Country{Code: "FK", Name: "Falkland Islands"},
        Country{Code: "FM", Name: "Micronesia, Federated State Of"},
        Country{Code: "FO", Name: "Faroe Islands"},
        Country{Code: "FR", Name: "France"},
        Country{Code: "GA", Name: "Gabon"},
        Country{Code: "GB", Name: "United Kingdom"},
        Country{Code: "GD", Name: "Grenada"},
        Country{Code: "GE", Name: "Georgia"},
        Country{Code: "GF", Name: "French Guiana"},
        Country{Code: "GH", Name: "Ghana"},
        Country{Code: "GI", Name: "Gibraltar"},
        Country{Code: "GL", Name: "Greenland"},
        Country{Code: "GM", Name: "Gambia, The"},
        Country{Code: "GN", Name: "Guinea"},
        Country{Code: "GP", Name: "Guadeloupe"},
        Country{Code: "GQ", Name: "Equatorial Guinea"},
        Country{Code: "GR", Name: "Greece"},
        Country{Code: "GT", Name: "Guatemala"},
        Country{Code: "GU", Name: "Guam"},
        Country{Code: "GW", Name: "Guinea-Bissau"},
        Country{Code: "GY", Name: "Guyana"},
        Country{Code: "GZ", Name: "Gaza Strip"},
        Country{Code: "HK", Name: "Hong Kong SAR"},
        Country{Code: "HM", Name: "Heard & McDonald Islands"},
        Country{Code: "HN", Name: "Honduras"},
        Country{Code: "HR", Name: "Croatia"},
        Country{Code: "HT", Name: "Haiti"},
        Country{Code: "HU", Name: "Hungary"},
        Country{Code: "ID", Name: "Indonesia"},
        Country{Code: "IE", Name: "Ireland"},
        Country{Code: "IL", Name: "Israel"},
        Country{Code: "IN", Name: "India"},
        Country{Code: "IO", Name: "British Indian Ocean Territory"},
        Country{Code: "IQ", Name: "Iraq"},
        Country{Code: "IR", Name: "Iran"},
        Country{Code: "IS", Name: "Iceland"},
        Country{Code: "IT", Name: "Italy"},
        Country{Code: "JM", Name: "Jamaica"},
        Country{Code: "JO", Name: "Jordan"},
        Country{Code: "JP", Name: "Japan"},
        Country{Code: "KE", Name: "Kenya"},
        Country{Code: "KG", Name: "Kyrgyzstan"},
        Country{Code: "KH", Name: "Kampuchea"},
        Country{Code: "KI", Name: "Kiribati"},
        Country{Code: "KM", Name: "Comoros"},
        Country{Code: "KN", Name: "Saint Christopher & Nevis"},
        Country{Code: "KP", Name: "Korea, Democratic Peoples Repuplic"},
        Country{Code: "KR", Name: "Korea, Republic Of (South)"},
        Country{Code: "KV", Name: "Kosovo"},
        Country{Code: "KW", Name: "Kuwait"},
        Country{Code: "KY", Name: "Cayman Islands"},
        Country{Code: "KZ", Name: "Kazakhstan"},
        Country{Code: "LA", Name: "Lao Peoples Democratic Repblc."},
        Country{Code: "LB", Name: "Lebanon"},
        Country{Code: "LC", Name: "Saint Lucia"},
        Country{Code: "LI", Name: "Liechtenstein"},
        Country{Code: "LK", Name: "Sri Lanka"},
        Country{Code: "LR", Name: "Liberia"},
        Country{Code: "LS", Name: "Lesotho"},
        Country{Code: "LT", Name: "Lithuania"},
        Country{Code: "LU", Name: "Luxembourg"},
        Country{Code: "LV", Name: "Latvia"},
        Country{Code: "LY", Name: "Libya"},
        Country{Code: "MA", Name: "Morocco"},
        Country{Code: "MC", Name: "Monaco"},
        Country{Code: "MD", Name: "Moldova"},
        Country{Code: "ME", Name: "Montenegro"},
        Country{Code: "MG", Name: "Madagascar"},
        Country{Code: "MH", Name: "Marshall Islands"},
        Country{Code: "MK", Name: "Macedonia"},
        Country{Code: "ML", Name: "Mali"},
        Country{Code: "MM", Name: "Burma (Myanmar)"},
        Country{Code: "MN", Name: "Mongolia"},
        Country{Code: "MO", Name: "Macau SAR"},
        Country{Code: "MP", Name: "Northern Mariana Islands"},
        Country{Code: "MQ", Name: "Martinique"},
        Country{Code: "MR", Name: "Mauritania"},
        Country{Code: "MS", Name: "Montserrat"},
        Country{Code: "MT", Name: "Malta & Gozo"},
        Country{Code: "MU", Name: "Mauritius"},
        Country{Code: "MV", Name: "Maldives"},
        Country{Code: "MW", Name: "Malawi"},
        Country{Code: "MX", Name: "Mexico"},
        Country{Code: "MY", Name: "Malaysia"},
        Country{Code: "MZ", Name: "Mozambique"},
        Country{Code: "NA", Name: "Namibia"},
        Country{Code: "NC", Name: "New Caledonia"},
        Country{Code: "NE", Name: "Niger"},
        Country{Code: "NF", Name: "Norfolk Island"},
        Country{Code: "NG", Name: "Nigeria"},
        Country{Code: "NI", Name: "Nicaragua"},
        Country{Code: "NL", Name: "Netherlands"},
        Country{Code: "NO", Name: "Norway"},
        Country{Code: "NP", Name: "Nepal"},
        Country{Code: "NR", Name: "Nauru"},
        Country{Code: "NT", Name: "Neutral Zone (Iraq-Saudi Arab)"},
        Country{Code: "NU", Name: "Niue"},
        Country{Code: "NZ", Name: "New Zealand"},
        Country{Code: "OM", Name: "Oman"},
        Country{Code: "PA", Name: "Panama"},
        Country{Code: "PE", Name: "Peru"},
        Country{Code: "PF", Name: "French Polynesia"},
        Country{Code: "PG", Name: "Papua New Guinea"},
        Country{Code: "PH", Name: "Philippines"},
        Country{Code: "PK", Name: "Pakistan"},
        Country{Code: "PL", Name: "Poland"},
        Country{Code: "PM", Name: "Saint Pierre & Miquelon"},
        Country{Code: "PN", Name: "Pitcairn Island"},
        Country{Code: "PR", Name: "Puerto Rico"},
        Country{Code: "PS", Name: "PALESTINIAN TERRITORY"},
        Country{Code: "PT", Name: "Portugal"},
        Country{Code: "PW", Name: "Palau"},
        Country{Code: "PY", Name: "Paraguay"},
        Country{Code: "QA", Name: "Qatar"},
        Country{Code: "RE", Name: "Reunion"},
        Country{Code: "RO", Name: "Romania"},
        Country{Code: "RS", Name: "Serbia"},
        Country{Code: "RU", Name: "Russia"},
        Country{Code: "RW", Name: "Rwanda"},
        Country{Code: "SA", Name: "Saudi Arabia"},
        Country{Code: "SB", Name: "Solomon Islands"},
        Country{Code: "SC", Name: "Seychelles"},
        Country{Code: "SD", Name: "Sudan"},
        Country{Code: "SE", Name: "Sweden"},
        Country{Code: "SG", Name: "Singapore"},
        Country{Code: "SH", Name: "Saint Helena"},
        Country{Code: "SI", Name: "Slovenia"},
        Country{Code: "SJ", Name: "Svalbard & Jan Mayen Islands"},
        Country{Code: "SK", Name: "Slovakia"},
        Country{Code: "SL", Name: "Sierra Leone"},
        Country{Code: "SM", Name: "San Marino"},
        Country{Code: "SN", Name: "Senegal"},
        Country{Code: "SO", Name: "Somalia"},
        Country{Code: "SR", Name: "Surinam"},
        Country{Code: "ST", Name: "Sao Tome & Principe"},
        Country{Code: "SV", Name: "El Salvador"},
        Country{Code: "SY", Name: "Syrian Arab Republic"},
        Country{Code: "SZ", Name: "Swaziland"},
        Country{Code: "TC", Name: "Turks & Caicos Island"},
        Country{Code: "TD", Name: "Chad"},
        Country{Code: "TF", Name: "French Southern Antarctic"},
        Country{Code: "TG", Name: "Togo"},
        Country{Code: "TH", Name: "Thailand"},
        Country{Code: "TJ", Name: "Tajikistan"},
        Country{Code: "TK", Name: "Tokelau Islands"},
        Country{Code: "TL", Name: "Timor Leste"},
        Country{Code: "TM", Name: "Turkmenistan"},
        Country{Code: "TN", Name: "Tunisia"},
        Country{Code: "TO", Name: "Tonga"},
        Country{Code: "TP", Name: "East Timor"},
        Country{Code: "TR", Name: "Turkey"},
        Country{Code: "TT", Name: "Trinidad & Tobago"},
        Country{Code: "TV", Name: "Tuvalu"},
        Country{Code: "TW", Name: "Taiwan"},
        Country{Code: "TZ", Name: "Tanzania, United Republic Of"},
        Country{Code: "UA", Name: "Ukraine"},
        Country{Code: "UG", Name: "Uganda"},
        Country{Code: "UM", Name: "United States Outlying Islands"},
        Country{Code: "US", Name: "United States"},
        Country{Code: "UY", Name: "Uruguay"},
        Country{Code: "UZ", Name: "Uzbekistan"},
        Country{Code: "VA", Name: "Vatican City State"},
        Country{Code: "VC", Name: "St. Vincent & The Grenadines"},
        Country{Code: "VE", Name: "Venezuela"},
        Country{Code: "VG", Name: "British Virgin Islands"},
        Country{Code: "VI", Name: "Virgin Islands Of The U. S."},
        Country{Code: "VN", Name: "Vietnam"},
        Country{Code: "VU", Name: "Vanuatu"},
        Country{Code: "WE", Name: "West Bank"},
        Country{Code: "WF", Name: "Wallis & Futuna Islands"},
        Country{Code: "WS", Name: "Western Samoa"},
        Country{Code: "YD", Name: "Yemen, Democratic (South)"},
        Country{Code: "YE", Name: "Yemen"},
        Country{Code: "YU", Name: "Yugoslavia"},
        Country{Code: "ZA", Name: "South Africa"},
        Country{Code: "ZM", Name: "Zambia"},
        Country{Code: "ZW", Name: "Zimbabwe"},
    }

}
 
Back
Top