import spacy
nlp = spacy.load('en')
# une phrase ….
doc = nlp(u'John works at Google in London which is a big city in the United Kingdom.')

# parcourir et afficher resultat
for ent in doc.ents:
	print(ent.label_, ent.text)
 