如何将HTMLParser输出保存到字符串?

时间:2016-07-01 18:41:54

标签: python html python-2.7

我试图将HTMLParser类的输出保存为字符串,以便我自己的程序进一步操作。我试着简单地写

manipulateString = parser.feed(html_string)

但是返回了一条错误消息。我已经研究过使用cPickle但是为了检索解析器输出而不得不创建另一个文件似乎很笨拙。

我应该如何将parser.feed(html_string)写入字符串?

0 个答案:

没有答案