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 | |
''' | |
Este script utiliza a API do MercadoLivre Brasil para realizar buscas através da linha de comando. | |
Escrito em Python 3. | |
Uso: ./buscamercadolivre.py "PRODUTO" | |
Busque um produto por vez. | |
''' |
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 | |
''' | |
Este é um web-crawler simples escrito em Python 3 que serve para pesquisar endereços e CEP correspondentes | |
através da linha de comando. | |
Ele não utiliza nenhuma API específica, apenas acessa a página dos Correios e pesquisa o endereço. | |
Modo de uso: | |
$ ./buscacep.py "Endereço ou CEP a ser pesquisado" | |
Utilize um endereço por vez. Exemplos: |
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 python | |
import sys | |
import time | |
from itertools import cycle | |
MESSAGE = ' [*] Starting Metasploit Framework Console...' | |
CYCLES = ['-', '\\', '|', '/'] | |
for index in cycle(range(len(MESSAGE))): |
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 python | |
# -*- coding: UTF-8 -*- | |
import sys | |
import threading | |
import time | |
from itertools import cycle |
NewerOlder