One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| from bs4 import BeautifulSoup | |
| import spacy | |
| import unidecode | |
| from word2number import w2n | |
| import contractions | |
| nlp = spacy.load('en_core_web_md') | |
| # exclude words from spacy stopwords list | |
| deselect_stop_words = ['no', 'not'] |
| var Promise = require('bluebird'); | |
| var funcs = Promise.resolve([500, 100, 400, 200].map((n) => makeWait(n))); | |
| funcs | |
| .each(iterator) // logs: 500, 100, 400, 200 | |
| .then(console.log) // logs: [ [Function], [Function], [Function], [Function] ] | |
| funcs | |
| .mapSeries(iterator) // logs: 500, 100, 400, 200 |