Skip to content

Instantly share code, notes, and snippets.

@SuvroBaner
Created November 13, 2018 10:07
Show Gist options
  • Save SuvroBaner/af30eb66793787b291e9bbeb38364faa to your computer and use it in GitHub Desktop.
Save SuvroBaner/af30eb66793787b291e9bbeb38364faa to your computer and use it in GitHub Desktop.
article = '''
Asian shares skidded on Tuesday after a rout in tech stocks put Wall Street to the sword, while a
sharp drop in oil prices and political risks in Europe pushed the dollar to 16-month highs as investors dumped
riskier assets. MSCI’s broadest index of Asia-Pacific shares outside Japan dropped 1.7 percent to a 1-1/2
week trough, with Australian shares sinking 1.6 percent. Japan’s Nikkei dived 3.1 percent led by losses in
electric machinery makers and suppliers of Apple’s iphone parts. Sterling fell to $1.286 after three straight
sessions of losses took it to the lowest since Nov.1 as there were still considerable unresolved issues with the
European Union over Brexit, British Prime Minister Theresa May said on Monday.'''
import spacy
spacy_nlp = spacy.load('en')
document = spacy_nlp(article)
print('Original Sentence: %s' % (article))
for element in document.ents:
print('Type: %s, Value: %s' % (element.label_, element))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment