import geograpy
from geograpy import places
from pprint import pprint
# address = geograpy.get_place_context(text='United States')
# pprint (vars(address))
from geograpy import extraction
e = extraction.Extractor(url='http://www.bbc.com/news/world-europe-26919928')
e.find_entities()
# You can now access all of the places found by the Extractor
pprint (e.places)
pprint (vars(e.places))
Results: