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
""" | |
It is a good practice to usually run fabric directly from is | |
directory folder | |
to install: | |
pip install fabric3 | |
to run (in fabfile current directory): | |
fab test | |
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
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
""" | |
Created on Thu Jan 31 15:41:46 2019 | |
@author: boaretto | |
""" | |
from string import digits | |
from nltk import ngrams, FreqDist | |
from nltk.corpus import stopwords |