Im trying to extract all the countries in a string using Geotext
It works fine for a few sentences but doesnt work for some.
Ive tried to do it in Python 3.6.
s="India Vs Ireland T20 Series"
s=GeoText(s)
s.countries
Expected Results:
['India','Ireland']
Actual Result:
['Ireland']