Hi, Is there such a thing ?
Trying to understand the various strings I get hereunder Thanks, hg from nntplib import * s = NNTP('news.central.cox.net') resp, count, first, last, name = s.group('comp.lang.python') print 'Group', name, 'has', count, 'articles, range', first, 'to', last resp, subs = s.xhdr('subject', first + '-' + last) for id, sub in subs[-10:]: print id for article in s.article(id): print dir(article) -- http://mail.python.org/mailman/listinfo/python-list