import spacy
nlp = spacy.load('en')

doc = nlp(u"Natural language processing (NLP) deals with the application of computational models to text or speech data.")

for np in doc6.noun_chunks : print (np)
 