Lines Matching full:csv
6 ``suspicious.csv``, located in the output directory.
16 again and again, they may be added to the ``ignored.csv`` file
18 format as ``suspicious.csv`` with a few differences:
36 The simplest way to create the ignored.csv file is by copying
37 undesired entries from suspicious.csv (possibly trimming the last
46 import csv
76 class dialect(csv.excel):
90 self.log_file_name = os.path.join(self.outdir, 'suspicious.csv')
94 'susp-ignored.csv'))
158 writer = csv.writer(f, dialect)
165 A csv file, with exactly the same format as suspicious.csv
174 for i, row in enumerate(csv.reader(f)):