Created
March 22, 2017 14:32
-
-
Save guilhermemauro/2569c1a418a3d6cff0a2cc0f9af79a30 to your computer and use it in GitHub Desktop.
This file contains 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
from bs4 import BeautifulSoup as bs | |
import requests, sys, re | |
from termcolor import colored | |
if len(sys.argv) < 2: | |
print colored("Falta o argumento palavra: Tente 'python main.py palavra'", 'red') | |
exit() | |
elif len(sys.argv) > 2: | |
print colored("O programa so toma apenas um argumento, o primeiro argumento sera utilizado.", 'red') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment