mirror of
https://github.com/MetaCubeX/meta-rules-dat.git
synced 2024-11-10 03:55:35 +08:00
30 lines
963 B
Python
30 lines
963 B
Python
import argparse
|
|
|
|
|
|
def remove_domains(file_to_remove, file_to_remove_from, output_file):
|
|
with open(file_to_remove, "r") as f_remove, open(
|
|
file_to_remove_from, "r"
|
|
) as f_from:
|
|
domains_to_remove = set(line.strip() for line in f_remove)
|
|
all_domains = set(line.strip() for line in f_from)
|
|
|
|
remaining_domains = all_domains - domains_to_remove
|
|
|
|
with open(output_file, "w") as output:
|
|
output.write("\n".join(remaining_domains))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
parser = argparse.ArgumentParser(description="Remove domains from a file.")
|
|
parser.add_argument(
|
|
"-remove", required=True, help="File containing domains to be removed"
|
|
)
|
|
parser.add_argument(
|
|
"-from", required=True, dest="from_file", help="File to remove domains from"
|
|
)
|
|
parser.add_argument("-out", required=True, help="Output file")
|
|
|
|
args = parser.parse_args()
|
|
|
|
remove_domains(args.remove, args.from_file, args.out)
|