I am trying to extract countries/cities name from text file using geograpy (https://pypi.python.org/pypi/geograpy/0.3.7), but It's returning a empty list. My code is:
import geograpy
text = 'I am from Delhi'
places = geograpy.get_place_context(text=text)
print places.cities
Output:
[]
Why it is not extracting cities name?? Is there any way I can resolve it??