Se alguém tropeçar nessa postagem por meio de pesquisa procurando uma resposta. Eu escrevi um pequeno script python em seu lugar.
import csv
import os
blacklist_dict = {}
with open("blacklist.txt", 'r') as blacklist:
for line in blacklist:
line = line.strip('\n')
blacklist_dict[line] = 0
blacklist.close()
with open('filename.csv', "r") as source_file, open('newfile.csv', "w") as target_file:
reader = csv.reader(source_file)
writer = csv.writer(target_file)
for row in reader:
if row[2] not in blacklist_dict:
writer.writerows([row])