You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from spanlp.palabrota import Palabrota
PALABROTAS = [
"cojone",
]
text = "Solo es posible descargar en la calidad máxima del video"
for t in text.split(" "):
palabrota = Palabrota(include=PALABROTAS, exclude=['descargar'])
if palabrota.contains_palabrota(str(t)):
print(str(t))
Con este codigo en la version 1.1.0 el parametro exclude no funciona, cuando llega a la palabra descargar, entra al if a pesar de que esta en exclude
The text was updated successfully, but these errors were encountered:
Con este codigo en la version 1.1.0 el parametro exclude no funciona, cuando llega a la palabra descargar, entra al if a pesar de que esta en exclude
The text was updated successfully, but these errors were encountered: