-
-
Save hemanth/3002176 to your computer and use it in GitHub Desktop.
Python stopwords
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| stopwords = ['a', 'about', 'above', 'across', 'after', 'afterwards'] | |
| stopwords += ['again', 'against', 'all', 'almost', 'alone', 'along'] | |
| stopwords += ['already', 'also', 'although', 'always', 'am', 'among'] | |
| stopwords += ['amongst', 'amoungst', 'amount', 'an', 'and', 'another'] | |
| stopwords += ['any', 'anyhow', 'anyone', 'anything', 'anyway', 'anywhere'] | |
| stopwords += ['are', 'around', 'as', 'at', 'back', 'be', 'became'] | |
| stopwords += ['because', 'become', 'becomes', 'becoming', 'been'] | |
| stopwords += ['before', 'beforehand', 'behind', 'being', 'below'] | |
| stopwords += ['beside', 'besides', 'between', 'beyond', 'bill', 'both'] | |
| stopwords += ['bottom', 'but', 'by', 'call', 'can', 'cannot', 'cant'] | |
| stopwords += ['co', 'computer', 'con', 'could', 'couldnt', 'cry', 'de'] | |
| stopwords += ['describe', 'detail', 'did', 'do', 'done', 'down', 'due'] | |
| stopwords += ['during', 'each', 'eg', 'eight', 'either', 'eleven', 'else'] | |
| stopwords += ['elsewhere', 'empty', 'enough', 'etc', 'even', 'ever'] | |
| stopwords += ['every', 'everyone', 'everything', 'everywhere', 'except'] | |
| stopwords += ['few', 'fifteen', 'fifty', 'fill', 'find', 'fire', 'first'] | |
| stopwords += ['five', 'for', 'former', 'formerly', 'forty', 'found'] | |
| stopwords += ['four', 'from', 'front', 'full', 'further', 'get', 'give'] | |
| stopwords += ['go', 'had', 'has', 'hasnt', 'have', 'he', 'hence', 'her'] | |
| stopwords += ['here', 'hereafter', 'hereby', 'herein', 'hereupon', 'hers'] | |
| stopwords += ['herself', 'him', 'himself', 'his', 'how', 'however'] | |
| stopwords += ['hundred', 'i', 'ie', 'if', 'in', 'inc', 'indeed'] | |
| stopwords += ['interest', 'into', 'is', 'it', 'its', 'itself', 'keep'] | |
| stopwords += ['last', 'latter', 'latterly', 'least', 'less', 'ltd', 'made'] | |
| stopwords += ['many', 'may', 'me', 'meanwhile', 'might', 'mill', 'mine'] | |
| stopwords += ['more', 'moreover', 'most', 'mostly', 'move', 'much'] | |
| stopwords += ['must', 'my', 'myself', 'name', 'namely', 'neither', 'never'] | |
| stopwords += ['nevertheless', 'next', 'nine', 'no', 'nobody', 'none'] | |
| stopwords += ['noone', 'nor', 'not', 'nothing', 'now', 'nowhere', 'of'] | |
| stopwords += ['off', 'often', 'on','once', 'one', 'only', 'onto', 'or'] | |
| stopwords += ['other', 'others', 'otherwise', 'our', 'ours', 'ourselves'] | |
| stopwords += ['out', 'over', 'own', 'part', 'per', 'perhaps', 'please'] | |
| stopwords += ['put', 'rather', 're', 's', 'same', 'see', 'seem', 'seemed'] | |
| stopwords += ['seeming', 'seems', 'serious', 'several', 'she', 'should'] | |
| stopwords += ['show', 'side', 'since', 'sincere', 'six', 'sixty', 'so'] | |
| stopwords += ['some', 'somehow', 'someone', 'something', 'sometime'] | |
| stopwords += ['sometimes', 'somewhere', 'still', 'such', 'system', 'take'] | |
| stopwords += ['ten', 'than', 'that', 'the', 'their', 'them', 'themselves'] | |
| stopwords += ['then', 'thence', 'there', 'thereafter', 'thereby'] | |
| stopwords += ['therefore', 'therein', 'thereupon', 'these', 'they'] | |
| stopwords += ['thick', 'thin', 'third', 'this', 'those', 'though', 'three'] | |
| stopwords += ['three', 'through', 'throughout', 'thru', 'thus', 'to'] | |
| stopwords += ['together', 'too', 'top', 'toward', 'towards', 'twelve'] | |
| stopwords += ['twenty', 'two', 'un', 'under', 'until', 'up', 'upon'] | |
| stopwords += ['us', 'very', 'via', 'was', 'we', 'well', 'were', 'what'] | |
| stopwords += ['whatever', 'when', 'whence', 'whenever', 'where'] | |
| stopwords += ['whereafter', 'whereas', 'whereby', 'wherein', 'whereupon'] | |
| stopwords += ['wherever', 'whether', 'which', 'while', 'whither', 'who'] | |
| stopwords += ['whoever', 'whole', 'whom', 'whose', 'why', 'will', 'with'] | |
| stopwords += ['within', 'without', 'would', 'yet', 'you', 'your'] | |
| stopwords += ['yours', 'yourself', 'yourselves'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment