当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python nntplib.NNTP.descriptions用法及代码示例


用法:

NNTP.descriptions(grouppattern)

寄一个LIST NEWSGROUPS命令,在哪里grouppattern是指定的通配符字符串RFC 3977(它本质上与 DOS 或 UNIX shell 通配符字符串相同)。返回一对(response, descriptions),其中descriptions是将组名映射到文本说明的字典。

>>> resp, descs = s.descriptions('gmane.comp.python.*')
>>> len(descs) 
295
>>> descs.popitem() 
('gmane.comp.python.bio.general', 'BioPython discussion list (Moderated)')

相关用法


注:本文由纯净天空筛选整理自python.org大神的英文原创作品 nntplib.NNTP.descriptions。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。