changed script to be more modifiable

This commit is contained in:
Mo Langning 2023-11-27 23:31:57 +08:00 committed by GitHub
parent fead0e63e6
commit 51d1c5e6e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -8,9 +8,9 @@ import os
print("[+] Curse words remover")
SOURCE_FOLDER="Miscellaneous/list-of-swear-words"
TARGET_DIRS=["Passwords/Common-Credentials"]
curse_words=[]
TARGET_SUFFIX="-without-curse-words"
target_dirs=[""]
for root,_,file_list in os.walk(SOURCE_FOLDER):
for file in file_list:
@ -21,10 +21,9 @@ for root,_,file_list in os.walk(SOURCE_FOLDER):
# dedupe them
curse_words=list(dict.fromkeys(curse_words))
target_dirs=["Passwords/Common-Credentials"]
target_files=[]
for i in target_dirs:
for i in TARGET_DIRS:
for root,_,file_list in os.walk(i):
for file in file_list:
if not file.endswith(".txt"):