Skip to content

Instantly share code, notes, and snippets.

@guilhermemauro
Created March 22, 2017 14:32
Show Gist options
  • Save guilhermemauro/2569c1a418a3d6cff0a2cc0f9af79a30 to your computer and use it in GitHub Desktop.
Save guilhermemauro/2569c1a418a3d6cff0a2cc0f9af79a30 to your computer and use it in GitHub Desktop.

Revisions

  1. guilhermemauro created this gist Mar 22, 2017.
    9 changes: 9 additions & 0 deletions cambridge.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    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')