1、nntp:网络新闻传输协议 2、模型:group选择一个感兴趣的新闻组,该方法返回回复、文章的数量、第一篇和最后一篇文章的ID from nntplib import NNTP n = NNTP('your.nntp.server') r,c,f,l,g = n.group('comp.lang.python') ... n. quit() 3、NNTP方法:body根据ID获取内容,head只返回标题,article包括标题和文章,next,last,quit
image.png
image.png
4、实例:
from nntplib import NNTP
n = NNTP('your.nntp.server')
rsp, ct, fst, lst, grp = n.group('comp.lang.python')
rsp, anum, mid, data = n.article('110457')
for eachLine in data:
print eachLine
n.quit()
5、获取新闻的实例:
image.png
image.png
if __name=='main':
main()