Created
January 21, 2022 13:55
-
-
Save luxedo/1e260bcbcf1103cd1461ec8347504295 to your computer and use it in GitHub Desktop.
Assistente pra achar as palavras no https://term.ooo/
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
#!/usr/bin/env python | |
""" | |
Cansei de apanhar no termo https://term.ooo/. | |
➜ python termo.py -x e r t i p a l c n -f 2u 5o -c s | |
musgo | |
""" | |
from string import ascii_lowercase, digits | |
import argparse | |
from itertools import product | |
from os.path import isfile | |
from urllib.request import urlretrieve | |
WORDLIST = "wordlist.txt" | |
def baixar_wordlist(): | |
if not isfile(WORDLIST): | |
print(f"Baixando lista de palavras para ${WORDLIST}") | |
print("Isso só acontece uma vez hein") | |
urlretrieve("https://www.ime.usp.br/~pf/dicios/br-sem-acentos.txt", WORDLIST) | |
print("Pronto!") | |
def gerar_possibilidades(tamanho, excluir, fixar, contem): | |
dicio = [l for l in list(ascii_lowercase) if l not in excluir] | |
todas = [dicio for _ in range(tamanho)] | |
for i, c in fixar.items(): | |
todas[i - 1] = [c] | |
possibilidades = ["".join(p) for p in product(*todas)] | |
possibilidades = [p for p in possibilidades if all([c in p for c in contem])] | |
return possibilidades | |
def listar_palavras(possibilidades): | |
tamanho = len(possibilidades[0]) | |
with open(WORDLIST, "r") as fp: | |
wordlist = set([w for w in fp.read().split() if len(w) == tamanho]) | |
palavras = set(possibilidades) & wordlist | |
print("\n".join(palavras)) | |
def tupla_numero_letra(strings): | |
if ( | |
len(strings) != 2 | |
or strings[0] not in digits | |
or strings[1] not in ascii_lowercase | |
): | |
raise ArgumentError("Para fixar, use a posição e a letra. Ex: (2o 3l)") | |
return [int(strings[0]), strings[1]] | |
if __name__ == "__main__": | |
parser = argparse.ArgumentParser(description="Pra jogar termo") | |
parser.add_argument("-t", "--tamanho", type=int, default=5) | |
parser.add_argument( | |
"-x", "--excluir", nargs="+", default=list(), help="Letras que não tem" | |
) | |
parser.add_argument( | |
"-f", | |
"--fixar", | |
nargs="+", | |
type=tupla_numero_letra, | |
help="Caracteres fixos (2o 3l)", | |
default={}, | |
) | |
parser.add_argument( | |
"-c", "--contem", nargs="+", type=str, default=list(), help="Letras que tem" | |
) | |
args = parser.parse_args() | |
baixar_wordlist() | |
possibilidades = gerar_possibilidades( | |
args.tamanho, args.excluir, dict(args.fixar), list(args.contem) | |
) | |
listar_palavras(possibilidades) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment