
NNTP
文章平均质量分 76
hellodrawing
这个作者很懒,什么都没留下…
展开
-
python 基础教程 23章NNTP 2
#/usr/bin/env python #*-*coding:utf-8 *-* #python 基础 23章NNTP 23-1 简单的新闻收集道理程序 #python2.7 运行 from nntplib import NNTP from time import strftime, time, localtime day = 24 * 60 * 60 # 一转载 2017-04-10 00:03:14 · 907 阅读 · 0 评论 -
python 基础教程 23章NNTP 1
#/usr/bin/python # *-*coding:utf-8 *-* #python NNTP # group组返回响应信息 from nntplib import NNTP with NNTP('news.gmane.org') as n: print(n.group('gmane.comp.python.committers')) serv转载 2017-04-10 00:01:17 · 1649 阅读 · 1 评论 -
python 基础教程 23章NNTP 3
#/usr/bin/env python #*-*coding:utf-8 *-* # python 基础教程23章NNTP 23-2 更灵活的新闻收集代理程序 #python2.7 运行 from nntplib import NNTP from time import strftime, time, localtime from email import messa转载 2017-04-10 00:04:41 · 1278 阅读 · 0 评论