Nate Schimmoller
Nate Schimmoller
@deeplook @afparsons I would recommend checking out [countryinfo](https://pypi.org/project/countryinfo/) similar to my comment on #157 ``` python >>> code = 'USA' >>> import countryinfo >>> usa_info = countryinfo.CountryInfo(code) >>> usa_info.currencies() ['USD',...
See language specific code ``` python >>> countryinfo.CountryInfo('USA').languages() ['en'] ```
@SilverStrings024 @jbaehne @dennisvd I believe if you are looking to map a country to it's currency the best package for that currently is [countryinfo](https://pypi.org/project/countryinfo/)
Adding Éire as a test case for implementation per #189
@lambdaTotoro @Kreusada I don't think this is something we will be adding as it is not an ISO standard.
@bastimeyer and @ajslater sorry was doing some issue cleanup and had seen this feedback provided in more recent issues. I personally think that the solution here is likely a search_fuzzy...
@jenstroeger obviously your prerogative to work on this. However, it makes your life any easier. There is [pycountry](https://pypi.org/project/pycountry/) which also sources it's ISO 3166 data from debian's iso-codes. ``` python...