NNTP是网络新闻协议,所以主要用在获取新闻的功能上,基本模块有新闻发布时间(time)、标题(title)、正文(body)
<pre></code>
from nntplib import NNTP
from time import localtime,time,strtime
day=24x60x60 #以秒为单位一天的时间
yesterday=localtime(time()-day) #计算昨天的时间
date=strtime(%y%m%d,yesterday) # 格式化时间(取每个时间段的后两位)
hour=strtime('%H%M%S',yesterday)
servername='your.news.host' #设置新闻组服务器的域名
group='cmp.lang.python.anounce'
s=NNTP(servername) #实例化虚拟服务器
ids=s.newsnew(group,date,hour)[1] #获取给定日期发表的id
for id in ids:
head=s.head(id)[3] # 查找给定id的标题
for line in head:
if line.lower().startwith('subject:')
subject=line[9:]
break
body=s.body(id).[3] #获取给定id的新闻正文
print subject
print '-' * 50
print ''.join(body)
</code></pre>