0

感谢这个网站上的好意,我已经安装了 2.7/setuptools/feedparser 都没有问题。我已经找到了 feedparser,它可以正常工作。

我一直在阅读有关如何通过 python 写入文件(文本)的教程,我在使用文本方面取得了一定的成功。但是,当我尝试编写一个数据列表时,它对我来说全都搞砸了,什么也没做全部。

原来的:

import feedparser

result = feedparser.parse('https://gdata.youtube.com/feeds/api/videos/Ej4_G-E1cAM/comments')
for entry in result.entries:
print entry.author

我的尝试:

import feedparser

result = feedparser.parse('https://gdata.youtube.com/feeds/api/videos/Ej4_G-E1cAM/comments')
for entry in result.entries:
with open("write.txt", "w") as text_file:
text_file.write entry.author

我正在尝试为我的 YouTube 频道上即将发布的赠品收集评论。如果有人想知道我在使用这些看似无用的数据做什么。

最好的问候,-米奇鲍威尔

4

1 回答 1

0
import feedparser
f = open('filename','w')
result = feedparser.parse('https://gdata.youtube.com/feeds/api/videos/Ej4_G-E1cAM/comments')
for entry in result.entries:
    f.write(entry.author)
于 2013-04-04T20:04:18.117 回答