从html文档保存表

时间:2012-11-22 16:04:50

标签: python

我尝试将文档中的表格保存为目录下的文件,如下所示:

for table in tables:
    tableString = html.tostring(table)
    fileref=open('c:\\Users\\ahn_133\\Desktop\\appleTables\\Apple-' + str(count) + '.htm', 'w')
    fileref.write(tableString)
    fileref.close()
    count+=1

但是,我一直收到如下错误:

Traceback (most recent call last):
  File "<pyshell#27>", line 4, in <module>
    fileref.write(tableString)
TypeError: must be str, not bytes

我使用的是Python 3.3并安装了lxml-3.0.1.win32-py3.3.exe

如何修复此错误?

1 个答案:

答案 0 :(得分:2)

lxml的tostring方法返回字节字符串(bytes),因为它已经被编码。这是必要的,因为XML / HTML文档可以指定自己的编码,最好是正确的!

只需以二进制模式打开文件:

for table in tables:
    tableString = html.tostring(table)
    filename = r'c:\Users\ahn_133\Desktop\appleTables\Apple-' +str(count)+ '.htm'
    with open(filename, 'wb') as fileref:
        #                 ^
        fileref.write(tableString)
    count+=1