4

我正在尝试使用 Python 2.7.5 来清理格式错误的 CSV 文件。CSV 文件相当大(超过 1GB)。文件的第一行正确列出了列标题,但之后每个字段都在新行上(除非它是空白的),并且某些字段是多行的。多行字段不用引号括起来,但在输出中需要用引号括起来。列数是静态的且已知的。提供的样本输入中的模式在整个文件长度中重复。

输入文件(示例):

Hostname,Username,IP Addresses,Timestamp,Test1,Test2,Test3
my_hostname
,my_username
,10.0.0.1
192.168.1.1
,2015-02-11 13:41:54 -0600
,,true
,false
my_2nd_hostname
,my_2nd_username
,10.0.0.2
192.168.1.2
,2015-02-11 14:04:41 -0600
,true
,,false

期望的输出:

Hostname,Username,IP Addresses,Timestamp,Test1,Test2,Test3
my_hostname,my_username,"10.0.0.1 192.168.1.1",2015-02-11 13:41:54 -0600,,true,false
my_2nd_hostname,my_2nd_username,"10.0.0.2 192.168.1.2",2015-02-11 14:04:41 -0600,true,,false

我已经走了几条解决其中一个问题的路径,只是意识到它不能处理格式错误数据的另一个方面。如果有人可以帮助我确定清理此文件的有效方法,我将不胜感激。

谢谢

编辑

我有几个来自不同路径的代码碎片,但这是当前的迭代。这并不漂亮,只是一堆黑客试图解决这个问题。

import csv

inputfile = open('input.csv', 'r')
outputfile_1 = open('output.csv', 'w')

counter = 1
for line in inputfile:
    #Skip header row
    if counter == 1:
        outputfile_1.write(line)
        counter = counter + 1
    else:
        line = line.replace('\r', '').replace('\n', '')
        outputfile_1.write(line)

inputfile.close()
outputfile_1.close()

with open('output.csv', 'r') as f:
    text = f.read()

    comma_count = text.count(',') #comma_count/6 = total number of rows

    #need to insert a newline after the field contents after every 6th comma
    #unfortunately the last field of the row and the first field of the next row are now rammed up together becaue of the newline replaces above...
    #then process as normal CSV

    #one path I started to go down... but this isn't even functional
    groups = text.split(',')

    counter2 = 1
    while (counter2 <= comma_count/6):
        line = ','.join(groups[:(6*counter2)]), ','.join(groups[(6*counter2):])
        print line
        counter2 = counter2 + 1

编辑 2

感谢@DSM 和@Ryan Vincent 让我走上正轨。使用他们的想法,我编写了以下代码,这似乎纠正了我格式错误的 CSV。我相信有很多地方需要改进,我很乐意接受。

import csv
import re

outputfile_1 = open('output.csv', 'wb')
wr = csv.writer(outputfile_1, quoting=csv.QUOTE_ALL)

with open('input.csv', 'r') as f:
    text = f.read()
    comma_indices = [m.start() for m in re.finditer(',', text)] #Find all the commas - the fields are between them

    cursor = 0
    field_counter = 1
    row_count = 0
    csv_row = []

    for index in comma_indices:
        newrowflag = False

        if "\r" in text[cursor:index]:
            #This chunk has two fields, the last of one row and first of the next
            next_field=text[cursor:index].split('\r')
            next_field_trimmed = next_field[0].replace('\n',' ').rstrip().lstrip()
            csv_row.extend([next_field_trimmed]) #Add the last field of this row

            #Reset the cursor to be in the middle of the chuck (after the last field and before the next)
            #And set a flag that we need to start the next csvrow before we move on to the next comma index
            cursor = cursor+text[cursor:index].index('\r')+1
            newrowflag = True
        else:
            next_field_trimmed = text[cursor:index].replace('\n',' ').rstrip().lstrip()
            csv_row.extend([next_field_trimmed])

            #Advance the cursor to the character after the comma to start the next field
            cursor = index + 1

        #If we've done 7 fields then we've finished the row
        if field_counter%7==0:
            row_count = row_count + 1
            wr.writerow(csv_row)

            #Reset
            csv_row = []

            #If the last chunk had 2 fields in it...
            if newrowflag:
                next_field_trimmed = next_field[1].replace('\n',' ').rstrip().lstrip()
                csv_row.extend([next_field_trimmed])
                field_counter = field_counter + 1

        field_counter = field_counter + 1
    #Write the last row
    wr.writerow(csv_row)

outputfile_1.close()

# Process output.csv as normal CSV file...    
4

2 回答 2

1

这是关于我将如何解决这个问题的评论。

对于每一行:

我可以轻松识别某些组的开始和结束:

  • 主机名 - 只有一个
  • 用户名 - 阅读这些内容,直到遇到看起来不像用户名的内容(逗号分隔)
  • IP 地址 - 阅读这些直到遇到时间戳 - 用模式匹配标识 - 请注意这些是用空格而不是逗号分隔的。组的结尾由结尾的逗号标识。
  • 时间戳 - 易于通过模式匹配识别
  • test1, test2, test3 - 肯定会以逗号分隔的字段存在

注意:我会使用“模式”匹配来确定我在正确的位置有正确的东西。它可以更快地发现错误。

于 2015-02-12T03:40:14.937 回答
0

从您的数据摘录看来,任何以逗号开头的行都需要连接到前一行,并且以逗号以外的任何内容开头的任何行都标记了一个新行。

如果是这种情况,您可以使用以下代码来清理 CSV 文件,以便标准库csv解析器可以处理它。

#!/usr/bin/python
raw_data = 'somefilename.raw'
csv_data = 'somefilename.csv'
with open(raw_data, 'Ur') as inp, open(csv_data, 'wb') as out:
    row = list()
    for line in inp:
        line.rstrip('\n')
        if line.startswith(','):
            row.append(line)
        else:
            out.write(''.join(row)+'\n')
            row = list()
            row.append(line))
    # Don't forget to write the last row!
    out.write(''.join(row)+'\n')

这是一个微型状态机......在每一行中累积行,直到我们找到不以逗号开头的行,写入前一行等等。

于 2015-02-12T04:41:22.503 回答