Skip to content

Instantly share code, notes, and snippets.

@curtmerrill
Created January 29, 2021 20:38
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 curtmerrill/f21691008a98a453d65b4a4647681f16 to your computer and use it in GitHub Desktop.
Save curtmerrill/f21691008a98a453d65b4a4647681f16 to your computer and use it in GitHub Desktop.
Coffee producing countries
# Country codes and their corresponding flag emoji and names for coffee producing countries
# Source: https://en.wikipedia.org/wiki/List_of_countries_by_coffee_production
ORIGINS = (
('xx', '๐Ÿ‡บ๐Ÿ‡ณ Blend'),
('ao', '๐Ÿ‡ฆ๐Ÿ‡ด Angola'),
('bo', '๐Ÿ‡ง๐Ÿ‡ด Bolivia'),
('br', '๐Ÿ‡ง๐Ÿ‡ท Brazil'),
('bi', '๐Ÿ‡ง๐Ÿ‡ฎ Burundi'),
('cm', '๐Ÿ‡จ๐Ÿ‡ฒ Cameroon'),
('cf', '๐Ÿ‡จ๐Ÿ‡ซ Central African Republic'),
('cn', '๐Ÿ‡จ๐Ÿ‡ณ China'),
('co', '๐Ÿ‡จ๐Ÿ‡ด Colombia'),
('cr', '๐Ÿ‡จ๐Ÿ‡ท Costa Rica'),
('cu', '๐Ÿ‡จ๐Ÿ‡บ Cuba'),
('cd', '๐Ÿ‡จ๐Ÿ‡ฉ Democratic Republic of the Congo'),
('do', '๐Ÿ‡ฉ๐Ÿ‡ด Dominican Republic'),
('ec', '๐Ÿ‡ช๐Ÿ‡จ Ecuador'),
('sv', '๐Ÿ‡ธ๐Ÿ‡ป El Salvador'),
('et', '๐Ÿ‡ช๐Ÿ‡น Ethiopia'),
('ga', '๐Ÿ‡ฌ๐Ÿ‡ฆ Gabon'),
('gh', '๐Ÿ‡ฌ๐Ÿ‡ญ Ghana'),
('gt', '๐Ÿ‡ฌ๐Ÿ‡น Guatemala'),
('gn', '๐Ÿ‡ฌ๐Ÿ‡ณ Guinea'),
('ht', '๐Ÿ‡ญ๐Ÿ‡น Haiti'),
('hn', '๐Ÿ‡ญ๐Ÿ‡ณ Honduras'),
('in', '๐Ÿ‡ฎ๐Ÿ‡ณ India'),
('id', '๐Ÿ‡ฎ๐Ÿ‡ฉ Indonesia'),
('ci', '๐Ÿ‡จ๐Ÿ‡ฎ Ivory Coast'),
('jm', '๐Ÿ‡ฏ๐Ÿ‡ฒ Jamaica'),
('ke', '๐Ÿ‡ฐ๐Ÿ‡ช Kenya'),
('la', '๐Ÿ‡ฑ๐Ÿ‡ฆ Laos'),
('lr', '๐Ÿ‡ฑ๐Ÿ‡ท Liberia'),
('mg', '๐Ÿ‡ฒ๐Ÿ‡ฌ Madagascar'),
('mw', '๐Ÿ‡ฒ๐Ÿ‡ผ Malawi'),
('mx', '๐Ÿ‡ฒ๐Ÿ‡ฝ Mexico'),
('ni', '๐Ÿ‡ณ๐Ÿ‡ฎ Nicaragua'),
('ng', '๐Ÿ‡ณ๐Ÿ‡ฌ Nigeria'),
('pa', '๐Ÿ‡ต๐Ÿ‡ฆ Panama'),
('pg', '๐Ÿ‡ต๐Ÿ‡ฌ Papua New Guinea'),
('py', '๐Ÿ‡ต๐Ÿ‡พ Paraguay'),
('pe', '๐Ÿ‡ต๐Ÿ‡ช Peru'),
('ph', '๐Ÿ‡ต๐Ÿ‡ญ Philippines'),
('rw', '๐Ÿ‡ท๐Ÿ‡ผ Rwanda'),
('sl', '๐Ÿ‡ธ๐Ÿ‡ฑ Sierra Leone'),
('tz', '๐Ÿ‡น๐Ÿ‡ฟ Tanzania'),
('th', '๐Ÿ‡น๐Ÿ‡ญ Thailand'),
('tl', '๐Ÿ‡น๐Ÿ‡ฑ Timor Leste'),
('tg', '๐Ÿ‡น๐Ÿ‡ฌ Togo'),
('tt', '๐Ÿ‡น๐Ÿ‡น Trinidad and Tobago'),
('ug', '๐Ÿ‡บ๐Ÿ‡ฌ Uganda'),
('ve', '๐Ÿ‡ป๐Ÿ‡ช Venezuela'),
('vn', '๐Ÿ‡ป๐Ÿ‡ณ Vietnam'),
('ye', '๐Ÿ‡พ๐Ÿ‡ช Yemen'),
('zm', '๐Ÿ‡ฟ๐Ÿ‡ฒ Zambia'),
('zw', '๐Ÿ‡ฟ๐Ÿ‡ผ Zimbabwe'),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment