gooderp18绿色标准版
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

933 lines
88KB

  1. <!DOCTYPE html>
  2. <html lang="en" data-content_root="../">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <meta property="og:title" content="nntplib — NNTP protocol client" />
  7. <meta property="og:type" content="website" />
  8. <meta property="og:url" content="https://docs.python.org/3/library/nntplib.html" />
  9. <meta property="og:site_name" content="Python documentation" />
  10. <meta property="og:description" content="Source code: Lib/nntplib.py This module defines the class NNTP which implements the client side of the Network News Transfer Protocol. It can be used to implement a news reader or poster, or automa..." />
  11. <meta property="og:image" content="https://docs.python.org/3/_static/og-image.png" />
  12. <meta property="og:image:alt" content="Python documentation" />
  13. <meta name="description" content="Source code: Lib/nntplib.py This module defines the class NNTP which implements the client side of the Network News Transfer Protocol. It can be used to implement a news reader or poster, or automa..." />
  14. <meta property="og:image:width" content="200" />
  15. <meta property="og:image:height" content="200" />
  16. <meta name="theme-color" content="#3776ab" />
  17. <title>nntplib — NNTP protocol client &#8212; Python 3.12.3 documentation</title><meta name="viewport" content="width=device-width, initial-scale=1.0">
  18. <link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=80d5e7a1" />
  19. <link rel="stylesheet" type="text/css" href="../_static/pydoctheme.css?v=bb723527" />
  20. <link id="pygments_dark_css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css" href="../_static/pygments_dark.css?v=b20cc3f5" />
  21. <script src="../_static/documentation_options.js?v=2c828074"></script>
  22. <script src="../_static/doctools.js?v=888ff710"></script>
  23. <script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
  24. <script src="../_static/sidebar.js"></script>
  25. <link rel="search" type="application/opensearchdescription+xml"
  26. title="Search within Python 3.12.3 documentation"
  27. href="../_static/opensearch.xml"/>
  28. <link rel="author" title="About these documents" href="../about.html" />
  29. <link rel="index" title="Index" href="../genindex.html" />
  30. <link rel="search" title="Search" href="../search.html" />
  31. <link rel="copyright" title="Copyright" href="../copyright.html" />
  32. <link rel="next" title="optparse — Parser for command line options" href="optparse.html" />
  33. <link rel="prev" title="nis — Interface to Sun’s NIS (Yellow Pages)" href="nis.html" />
  34. <link rel="canonical" href="https://docs.python.org/3/library/nntplib.html" />
  35. <style>
  36. @media only screen {
  37. table.full-width-table {
  38. width: 100%;
  39. }
  40. }
  41. </style>
  42. <link rel="stylesheet" href="../_static/pydoctheme_dark.css" media="(prefers-color-scheme: dark)" id="pydoctheme_dark_css">
  43. <link rel="shortcut icon" type="image/png" href="../_static/py.svg" />
  44. <script type="text/javascript" src="../_static/copybutton.js"></script>
  45. <script type="text/javascript" src="../_static/menu.js"></script>
  46. <script type="text/javascript" src="../_static/search-focus.js"></script>
  47. <script type="text/javascript" src="../_static/themetoggle.js"></script>
  48. </head>
  49. <body>
  50. <div class="mobile-nav">
  51. <input type="checkbox" id="menuToggler" class="toggler__input" aria-controls="navigation"
  52. aria-pressed="false" aria-expanded="false" role="button" aria-label="Menu" />
  53. <nav class="nav-content" role="navigation">
  54. <label for="menuToggler" class="toggler__label">
  55. <span></span>
  56. </label>
  57. <span class="nav-items-wrapper">
  58. <a href="https://www.python.org/" class="nav-logo">
  59. <img src="../_static/py.svg" alt="Python logo"/>
  60. </a>
  61. <span class="version_switcher_placeholder"></span>
  62. <form role="search" class="search" action="../search.html" method="get">
  63. <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" class="search-icon">
  64. <path fill-rule="nonzero" fill="currentColor" d="M15.5 14h-.79l-.28-.27a6.5 6.5 0 001.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 00-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 005.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path>
  65. </svg>
  66. <input placeholder="Quick search" aria-label="Quick search" type="search" name="q" />
  67. <input type="submit" value="Go"/>
  68. </form>
  69. </span>
  70. </nav>
  71. <div class="menu-wrapper">
  72. <nav class="menu" role="navigation" aria-label="main navigation">
  73. <div class="language_switcher_placeholder"></div>
  74. <label class="theme-selector-label">
  75. Theme
  76. <select class="theme-selector" oninput="activateTheme(this.value)">
  77. <option value="auto" selected>Auto</option>
  78. <option value="light">Light</option>
  79. <option value="dark">Dark</option>
  80. </select>
  81. </label>
  82. <div>
  83. <h3><a href="../contents.html">Table of Contents</a></h3>
  84. <ul>
  85. <li><a class="reference internal" href="#"><code class="xref py py-mod docutils literal notranslate"><span class="pre">nntplib</span></code> — NNTP protocol client</a><ul>
  86. <li><a class="reference internal" href="#nntp-objects">NNTP Objects</a><ul>
  87. <li><a class="reference internal" href="#attributes">Attributes</a></li>
  88. <li><a class="reference internal" href="#methods">Methods</a></li>
  89. </ul>
  90. </li>
  91. <li><a class="reference internal" href="#utility-functions">Utility functions</a></li>
  92. </ul>
  93. </li>
  94. </ul>
  95. </div>
  96. <div>
  97. <h4>Previous topic</h4>
  98. <p class="topless"><a href="nis.html"
  99. title="previous chapter"><code class="xref py py-mod docutils literal notranslate"><span class="pre">nis</span></code> — Interface to Sun’s NIS (Yellow Pages)</a></p>
  100. </div>
  101. <div>
  102. <h4>Next topic</h4>
  103. <p class="topless"><a href="optparse.html"
  104. title="next chapter"><code class="xref py py-mod docutils literal notranslate"><span class="pre">optparse</span></code> — Parser for command line options</a></p>
  105. </div>
  106. <div role="note" aria-label="source link">
  107. <h3>This Page</h3>
  108. <ul class="this-page-menu">
  109. <li><a href="../bugs.html">Report a Bug</a></li>
  110. <li>
  111. <a href="https://github.com/python/cpython/blob/main/Doc/library/nntplib.rst"
  112. rel="nofollow">Show Source
  113. </a>
  114. </li>
  115. </ul>
  116. </div>
  117. </nav>
  118. </div>
  119. </div>
  120. <div class="related" role="navigation" aria-label="related navigation">
  121. <h3>Navigation</h3>
  122. <ul>
  123. <li class="right" style="margin-right: 10px">
  124. <a href="../genindex.html" title="General Index"
  125. accesskey="I">index</a></li>
  126. <li class="right" >
  127. <a href="../py-modindex.html" title="Python Module Index"
  128. >modules</a> |</li>
  129. <li class="right" >
  130. <a href="optparse.html" title="optparse — Parser for command line options"
  131. accesskey="N">next</a> |</li>
  132. <li class="right" >
  133. <a href="nis.html" title="nis — Interface to Sun’s NIS (Yellow Pages)"
  134. accesskey="P">previous</a> |</li>
  135. <li><img src="../_static/py.svg" alt="Python logo" style="vertical-align: middle; margin-top: -1px"/></li>
  136. <li><a href="https://www.python.org/">Python</a> &#187;</li>
  137. <li class="switchers">
  138. <div class="language_switcher_placeholder"></div>
  139. <div class="version_switcher_placeholder"></div>
  140. </li>
  141. <li>
  142. </li>
  143. <li id="cpython-language-and-version">
  144. <a href="../index.html">3.12.3 Documentation</a> &#187;
  145. </li>
  146. <li class="nav-item nav-item-1"><a href="index.html" >The Python Standard Library</a> &#187;</li>
  147. <li class="nav-item nav-item-2"><a href="superseded.html" accesskey="U">Superseded Modules</a> &#187;</li>
  148. <li class="nav-item nav-item-this"><a href=""><code class="xref py py-mod docutils literal notranslate"><span class="pre">nntplib</span></code> — NNTP protocol client</a></li>
  149. <li class="right">
  150. <div class="inline-search" role="search">
  151. <form class="inline-search" action="../search.html" method="get">
  152. <input placeholder="Quick search" aria-label="Quick search" type="search" name="q" id="search-box" />
  153. <input type="submit" value="Go" />
  154. </form>
  155. </div>
  156. |
  157. </li>
  158. <li class="right">
  159. <label class="theme-selector-label">
  160. Theme
  161. <select class="theme-selector" oninput="activateTheme(this.value)">
  162. <option value="auto" selected>Auto</option>
  163. <option value="light">Light</option>
  164. <option value="dark">Dark</option>
  165. </select>
  166. </label> |</li>
  167. </ul>
  168. </div>
  169. <div class="document">
  170. <div class="documentwrapper">
  171. <div class="bodywrapper">
  172. <div class="body" role="main">
  173. <section id="module-nntplib">
  174. <span id="nntplib-nntp-protocol-client"></span><h1><a class="reference internal" href="#module-nntplib" title="nntplib: NNTP protocol client (requires sockets). (deprecated)"><code class="xref py py-mod docutils literal notranslate"><span class="pre">nntplib</span></code></a> — NNTP protocol client<a class="headerlink" href="#module-nntplib" title="Link to this heading">¶</a></h1>
  175. <p><strong>Source code:</strong> <a class="reference external" href="https://github.com/python/cpython/tree/3.12/Lib/nntplib.py">Lib/nntplib.py</a></p>
  176. <div class="deprecated" id="index-0">
  177. <p><span class="versionmodified deprecated">Deprecated since version 3.11: </span>The <a class="reference internal" href="#module-nntplib" title="nntplib: NNTP protocol client (requires sockets). (deprecated)"><code class="xref py py-mod docutils literal notranslate"><span class="pre">nntplib</span></code></a> module is deprecated (see <span class="target" id="index-1"></span><a class="pep reference external" href="https://peps.python.org/pep-0594/"><strong>PEP 594</strong></a> for details).</p>
  178. </div>
  179. <hr class="docutils" />
  180. <p>This module defines the class <a class="reference internal" href="#nntplib.NNTP" title="nntplib.NNTP"><code class="xref py py-class docutils literal notranslate"><span class="pre">NNTP</span></code></a> which implements the client side of
  181. the Network News Transfer Protocol. It can be used to implement a news reader
  182. or poster, or automated news processors. It is compatible with <span class="target" id="index-2"></span><a class="rfc reference external" href="https://datatracker.ietf.org/doc/html/rfc3977.html"><strong>RFC 3977</strong></a>
  183. as well as the older <span class="target" id="index-3"></span><a class="rfc reference external" href="https://datatracker.ietf.org/doc/html/rfc977.html"><strong>RFC 977</strong></a> and <span class="target" id="index-4"></span><a class="rfc reference external" href="https://datatracker.ietf.org/doc/html/rfc2980.html"><strong>RFC 2980</strong></a>.</p>
  184. <div class="availability docutils container">
  185. <p><a class="reference internal" href="intro.html#availability"><span class="std std-ref">Availability</span></a>: not Emscripten, not WASI.</p>
  186. <p>This module does not work or is not available on WebAssembly platforms
  187. <code class="docutils literal notranslate"><span class="pre">wasm32-emscripten</span></code> and <code class="docutils literal notranslate"><span class="pre">wasm32-wasi</span></code>. See
  188. <a class="reference internal" href="intro.html#wasm-availability"><span class="std std-ref">WebAssembly platforms</span></a> for more information.</p>
  189. </div>
  190. <p>Here are two small examples of how it can be used. To list some statistics
  191. about a newsgroup and print the subjects of the last 10 articles:</p>
  192. <div class="highlight-python3 notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="n">s</span> <span class="o">=</span> <span class="n">nntplib</span><span class="o">.</span><span class="n">NNTP</span><span class="p">(</span><span class="s1">&#39;news.gmane.io&#39;</span><span class="p">)</span>
  193. <span class="gp">&gt;&gt;&gt; </span><span class="n">resp</span><span class="p">,</span> <span class="n">count</span><span class="p">,</span> <span class="n">first</span><span class="p">,</span> <span class="n">last</span><span class="p">,</span> <span class="n">name</span> <span class="o">=</span> <span class="n">s</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="s1">&#39;gmane.comp.python.committers&#39;</span><span class="p">)</span>
  194. <span class="gp">&gt;&gt;&gt; </span><span class="nb">print</span><span class="p">(</span><span class="s1">&#39;Group&#39;</span><span class="p">,</span> <span class="n">name</span><span class="p">,</span> <span class="s1">&#39;has&#39;</span><span class="p">,</span> <span class="n">count</span><span class="p">,</span> <span class="s1">&#39;articles, range&#39;</span><span class="p">,</span> <span class="n">first</span><span class="p">,</span> <span class="s1">&#39;to&#39;</span><span class="p">,</span> <span class="n">last</span><span class="p">)</span>
  195. <span class="go">Group gmane.comp.python.committers has 1096 articles, range 1 to 1096</span>
  196. <span class="gp">&gt;&gt;&gt; </span><span class="n">resp</span><span class="p">,</span> <span class="n">overviews</span> <span class="o">=</span> <span class="n">s</span><span class="o">.</span><span class="n">over</span><span class="p">((</span><span class="n">last</span> <span class="o">-</span> <span class="mi">9</span><span class="p">,</span> <span class="n">last</span><span class="p">))</span>
  197. <span class="gp">&gt;&gt;&gt; </span><span class="k">for</span> <span class="nb">id</span><span class="p">,</span> <span class="n">over</span> <span class="ow">in</span> <span class="n">overviews</span><span class="p">:</span>
  198. <span class="gp">... </span> <span class="nb">print</span><span class="p">(</span><span class="nb">id</span><span class="p">,</span> <span class="n">nntplib</span><span class="o">.</span><span class="n">decode_header</span><span class="p">(</span><span class="n">over</span><span class="p">[</span><span class="s1">&#39;subject&#39;</span><span class="p">]))</span>
  199. <span class="gp">...</span>
  200. <span class="go">1087 Re: Commit privileges for Łukasz Langa</span>
  201. <span class="go">1088 Re: 3.2 alpha 2 freeze</span>
  202. <span class="go">1089 Re: 3.2 alpha 2 freeze</span>
  203. <span class="go">1090 Re: Commit privileges for Łukasz Langa</span>
  204. <span class="go">1091 Re: Commit privileges for Łukasz Langa</span>
  205. <span class="go">1092 Updated ssh key</span>
  206. <span class="go">1093 Re: Updated ssh key</span>
  207. <span class="go">1094 Re: Updated ssh key</span>
  208. <span class="go">1095 Hello fellow committers!</span>
  209. <span class="go">1096 Re: Hello fellow committers!</span>
  210. <span class="gp">&gt;&gt;&gt; </span><span class="n">s</span><span class="o">.</span><span class="n">quit</span><span class="p">()</span>
  211. <span class="go">&#39;205 Bye!&#39;</span>
  212. </pre></div>
  213. </div>
  214. <p>To post an article from a binary file (this assumes that the article has valid
  215. headers, and that you have right to post on the particular newsgroup):</p>
  216. <div class="highlight-python3 notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="n">s</span> <span class="o">=</span> <span class="n">nntplib</span><span class="o">.</span><span class="n">NNTP</span><span class="p">(</span><span class="s1">&#39;news.gmane.io&#39;</span><span class="p">)</span>
  217. <span class="gp">&gt;&gt;&gt; </span><span class="n">f</span> <span class="o">=</span> <span class="nb">open</span><span class="p">(</span><span class="s1">&#39;article.txt&#39;</span><span class="p">,</span> <span class="s1">&#39;rb&#39;</span><span class="p">)</span>
  218. <span class="gp">&gt;&gt;&gt; </span><span class="n">s</span><span class="o">.</span><span class="n">post</span><span class="p">(</span><span class="n">f</span><span class="p">)</span>
  219. <span class="go">&#39;240 Article posted successfully.&#39;</span>
  220. <span class="gp">&gt;&gt;&gt; </span><span class="n">s</span><span class="o">.</span><span class="n">quit</span><span class="p">()</span>
  221. <span class="go">&#39;205 Bye!&#39;</span>
  222. </pre></div>
  223. </div>
  224. <p>The module itself defines the following classes:</p>
  225. <dl class="py class">
  226. <dt class="sig sig-object py" id="nntplib.NNTP">
  227. <em class="property"><span class="pre">class</span><span class="w"> </span></em><span class="sig-prename descclassname"><span class="pre">nntplib.</span></span><span class="sig-name descname"><span class="pre">NNTP</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">host</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">port=119</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">user=None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">password=None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">readermode=None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">usenetrc=False</span></span></em><span class="optional">[</span>, <em class="sig-param"><span class="n"><span class="pre">timeout</span></span></em><span class="optional">]</span><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP" title="Link to this definition">¶</a></dt>
  228. <dd><p>Return a new <a class="reference internal" href="#nntplib.NNTP" title="nntplib.NNTP"><code class="xref py py-class docutils literal notranslate"><span class="pre">NNTP</span></code></a> object, representing a connection
  229. to the NNTP server running on host <em>host</em>, listening at port <em>port</em>.
  230. An optional <em>timeout</em> can be specified for the socket connection.
  231. If the optional <em>user</em> and <em>password</em> are provided, or if suitable
  232. credentials are present in <code class="file docutils literal notranslate"><span class="pre">/.netrc</span></code> and the optional flag <em>usenetrc</em>
  233. is true, the <code class="docutils literal notranslate"><span class="pre">AUTHINFO</span> <span class="pre">USER</span></code> and <code class="docutils literal notranslate"><span class="pre">AUTHINFO</span> <span class="pre">PASS</span></code> commands are used
  234. to identify and authenticate the user to the server. If the optional
  235. flag <em>readermode</em> is true, then a <code class="docutils literal notranslate"><span class="pre">mode</span> <span class="pre">reader</span></code> command is sent before
  236. authentication is performed. Reader mode is sometimes necessary if you are
  237. connecting to an NNTP server on the local machine and intend to call
  238. reader-specific commands, such as <code class="docutils literal notranslate"><span class="pre">group</span></code>. If you get unexpected
  239. <a class="reference internal" href="#nntplib.NNTPPermanentError" title="nntplib.NNTPPermanentError"><code class="xref py py-exc docutils literal notranslate"><span class="pre">NNTPPermanentError</span></code></a>s, you might need to set <em>readermode</em>.
  240. The <a class="reference internal" href="#nntplib.NNTP" title="nntplib.NNTP"><code class="xref py py-class docutils literal notranslate"><span class="pre">NNTP</span></code></a> class supports the <a class="reference internal" href="../reference/compound_stmts.html#with"><code class="xref std std-keyword docutils literal notranslate"><span class="pre">with</span></code></a> statement to
  241. unconditionally consume <a class="reference internal" href="exceptions.html#OSError" title="OSError"><code class="xref py py-exc docutils literal notranslate"><span class="pre">OSError</span></code></a> exceptions and to close the NNTP
  242. connection when done, e.g.:</p>
  243. <div class="doctest highlight-default notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="kn">from</span> <span class="nn">nntplib</span> <span class="kn">import</span> <span class="n">NNTP</span>
  244. <span class="gp">&gt;&gt;&gt; </span><span class="k">with</span> <span class="n">NNTP</span><span class="p">(</span><span class="s1">&#39;news.gmane.io&#39;</span><span class="p">)</span> <span class="k">as</span> <span class="n">n</span><span class="p">:</span>
  245. <span class="gp">... </span> <span class="n">n</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="s1">&#39;gmane.comp.python.committers&#39;</span><span class="p">)</span>
  246. <span class="gp">... </span>
  247. <span class="go">(&#39;211 1755 1 1755 gmane.comp.python.committers&#39;, 1755, 1, 1755, &#39;gmane.comp.python.committers&#39;)</span>
  248. <span class="gp">&gt;&gt;&gt;</span>
  249. </pre></div>
  250. </div>
  251. <p class="audit-hook">Raises an <a class="reference internal" href="sys.html#auditing"><span class="std std-ref">auditing event</span></a> <code class="docutils literal notranslate"><span class="pre">nntplib.connect</span></code> with arguments <code class="docutils literal notranslate"><span class="pre">self</span></code>, <code class="docutils literal notranslate"><span class="pre">host</span></code>, <code class="docutils literal notranslate"><span class="pre">port</span></code>.</p>
  252. <p class="audit-hook"><p>All commands will raise an <a class="reference internal" href="sys.html#auditing"><span class="std std-ref">auditing event</span></a>
  253. <code class="docutils literal notranslate"><span class="pre">nntplib.putline</span></code> with arguments <code class="docutils literal notranslate"><span class="pre">self</span></code> and <code class="docutils literal notranslate"><span class="pre">line</span></code>,
  254. where <code class="docutils literal notranslate"><span class="pre">line</span></code> is the bytes about to be sent to the remote host.</p>
  255. </p>
  256. <div class="versionchanged">
  257. <p><span class="versionmodified changed">Changed in version 3.2: </span><em>usenetrc</em> is now <code class="docutils literal notranslate"><span class="pre">False</span></code> by default.</p>
  258. </div>
  259. <div class="versionchanged">
  260. <p><span class="versionmodified changed">Changed in version 3.3: </span>Support for the <a class="reference internal" href="../reference/compound_stmts.html#with"><code class="xref std std-keyword docutils literal notranslate"><span class="pre">with</span></code></a> statement was added.</p>
  261. </div>
  262. <div class="versionchanged">
  263. <p><span class="versionmodified changed">Changed in version 3.9: </span>If the <em>timeout</em> parameter is set to be zero, it will raise a
  264. <a class="reference internal" href="exceptions.html#ValueError" title="ValueError"><code class="xref py py-class docutils literal notranslate"><span class="pre">ValueError</span></code></a> to prevent the creation of a non-blocking socket.</p>
  265. </div>
  266. </dd></dl>
  267. <dl class="py class">
  268. <dt class="sig sig-object py" id="nntplib.NNTP_SSL">
  269. <em class="property"><span class="pre">class</span><span class="w"> </span></em><span class="sig-prename descclassname"><span class="pre">nntplib.</span></span><span class="sig-name descname"><span class="pre">NNTP_SSL</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">host</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">port=563</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">user=None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">password=None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">ssl_context=None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">readermode=None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">usenetrc=False</span></span></em><span class="optional">[</span>, <em class="sig-param"><span class="n"><span class="pre">timeout</span></span></em><span class="optional">]</span><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP_SSL" title="Link to this definition">¶</a></dt>
  270. <dd><p>Return a new <a class="reference internal" href="#nntplib.NNTP_SSL" title="nntplib.NNTP_SSL"><code class="xref py py-class docutils literal notranslate"><span class="pre">NNTP_SSL</span></code></a> object, representing an encrypted
  271. connection to the NNTP server running on host <em>host</em>, listening at
  272. port <em>port</em>. <a class="reference internal" href="#nntplib.NNTP_SSL" title="nntplib.NNTP_SSL"><code class="xref py py-class docutils literal notranslate"><span class="pre">NNTP_SSL</span></code></a> objects have the same methods as
  273. <a class="reference internal" href="#nntplib.NNTP" title="nntplib.NNTP"><code class="xref py py-class docutils literal notranslate"><span class="pre">NNTP</span></code></a> objects. If <em>port</em> is omitted, port 563 (NNTPS) is used.
  274. <em>ssl_context</em> is also optional, and is a <a class="reference internal" href="ssl.html#ssl.SSLContext" title="ssl.SSLContext"><code class="xref py py-class docutils literal notranslate"><span class="pre">SSLContext</span></code></a> object.
  275. Please read <a class="reference internal" href="ssl.html#ssl-security"><span class="std std-ref">Security considerations</span></a> for best practices.
  276. All other parameters behave the same as for <a class="reference internal" href="#nntplib.NNTP" title="nntplib.NNTP"><code class="xref py py-class docutils literal notranslate"><span class="pre">NNTP</span></code></a>.</p>
  277. <p>Note that SSL-on-563 is discouraged per <span class="target" id="index-5"></span><a class="rfc reference external" href="https://datatracker.ietf.org/doc/html/rfc4642.html"><strong>RFC 4642</strong></a>, in favor of
  278. STARTTLS as described below. However, some servers only support the
  279. former.</p>
  280. <p class="audit-hook">Raises an <a class="reference internal" href="sys.html#auditing"><span class="std std-ref">auditing event</span></a> <code class="docutils literal notranslate"><span class="pre">nntplib.connect</span></code> with arguments <code class="docutils literal notranslate"><span class="pre">self</span></code>, <code class="docutils literal notranslate"><span class="pre">host</span></code>, <code class="docutils literal notranslate"><span class="pre">port</span></code>.</p>
  281. <p class="audit-hook"><p>All commands will raise an <a class="reference internal" href="sys.html#auditing"><span class="std std-ref">auditing event</span></a>
  282. <code class="docutils literal notranslate"><span class="pre">nntplib.putline</span></code> with arguments <code class="docutils literal notranslate"><span class="pre">self</span></code> and <code class="docutils literal notranslate"><span class="pre">line</span></code>,
  283. where <code class="docutils literal notranslate"><span class="pre">line</span></code> is the bytes about to be sent to the remote host.</p>
  284. </p>
  285. <div class="versionadded">
  286. <p><span class="versionmodified added">New in version 3.2.</span></p>
  287. </div>
  288. <div class="versionchanged">
  289. <p><span class="versionmodified changed">Changed in version 3.4: </span>The class now supports hostname check with
  290. <a class="reference internal" href="ssl.html#ssl.SSLContext.check_hostname" title="ssl.SSLContext.check_hostname"><code class="xref py py-attr docutils literal notranslate"><span class="pre">ssl.SSLContext.check_hostname</span></code></a> and <em>Server Name Indication</em> (see
  291. <a class="reference internal" href="ssl.html#ssl.HAS_SNI" title="ssl.HAS_SNI"><code class="xref py py-data docutils literal notranslate"><span class="pre">ssl.HAS_SNI</span></code></a>).</p>
  292. </div>
  293. <div class="versionchanged">
  294. <p><span class="versionmodified changed">Changed in version 3.9: </span>If the <em>timeout</em> parameter is set to be zero, it will raise a
  295. <a class="reference internal" href="exceptions.html#ValueError" title="ValueError"><code class="xref py py-class docutils literal notranslate"><span class="pre">ValueError</span></code></a> to prevent the creation of a non-blocking socket.</p>
  296. </div>
  297. </dd></dl>
  298. <dl class="py exception">
  299. <dt class="sig sig-object py" id="nntplib.NNTPError">
  300. <em class="property"><span class="pre">exception</span><span class="w"> </span></em><span class="sig-prename descclassname"><span class="pre">nntplib.</span></span><span class="sig-name descname"><span class="pre">NNTPError</span></span><a class="headerlink" href="#nntplib.NNTPError" title="Link to this definition">¶</a></dt>
  301. <dd><p>Derived from the standard exception <a class="reference internal" href="exceptions.html#Exception" title="Exception"><code class="xref py py-exc docutils literal notranslate"><span class="pre">Exception</span></code></a>, this is the base
  302. class for all exceptions raised by the <a class="reference internal" href="#module-nntplib" title="nntplib: NNTP protocol client (requires sockets). (deprecated)"><code class="xref py py-mod docutils literal notranslate"><span class="pre">nntplib</span></code></a> module. Instances
  303. of this class have the following attribute:</p>
  304. <dl class="py attribute">
  305. <dt class="sig sig-object py" id="nntplib.NNTPError.response">
  306. <span class="sig-name descname"><span class="pre">response</span></span><a class="headerlink" href="#nntplib.NNTPError.response" title="Link to this definition">¶</a></dt>
  307. <dd><p>The response of the server if available, as a <a class="reference internal" href="stdtypes.html#str" title="str"><code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code></a> object.</p>
  308. </dd></dl>
  309. </dd></dl>
  310. <dl class="py exception">
  311. <dt class="sig sig-object py" id="nntplib.NNTPReplyError">
  312. <em class="property"><span class="pre">exception</span><span class="w"> </span></em><span class="sig-prename descclassname"><span class="pre">nntplib.</span></span><span class="sig-name descname"><span class="pre">NNTPReplyError</span></span><a class="headerlink" href="#nntplib.NNTPReplyError" title="Link to this definition">¶</a></dt>
  313. <dd><p>Exception raised when an unexpected reply is received from the server.</p>
  314. </dd></dl>
  315. <dl class="py exception">
  316. <dt class="sig sig-object py" id="nntplib.NNTPTemporaryError">
  317. <em class="property"><span class="pre">exception</span><span class="w"> </span></em><span class="sig-prename descclassname"><span class="pre">nntplib.</span></span><span class="sig-name descname"><span class="pre">NNTPTemporaryError</span></span><a class="headerlink" href="#nntplib.NNTPTemporaryError" title="Link to this definition">¶</a></dt>
  318. <dd><p>Exception raised when a response code in the range 400–499 is received.</p>
  319. </dd></dl>
  320. <dl class="py exception">
  321. <dt class="sig sig-object py" id="nntplib.NNTPPermanentError">
  322. <em class="property"><span class="pre">exception</span><span class="w"> </span></em><span class="sig-prename descclassname"><span class="pre">nntplib.</span></span><span class="sig-name descname"><span class="pre">NNTPPermanentError</span></span><a class="headerlink" href="#nntplib.NNTPPermanentError" title="Link to this definition">¶</a></dt>
  323. <dd><p>Exception raised when a response code in the range 500–599 is received.</p>
  324. </dd></dl>
  325. <dl class="py exception">
  326. <dt class="sig sig-object py" id="nntplib.NNTPProtocolError">
  327. <em class="property"><span class="pre">exception</span><span class="w"> </span></em><span class="sig-prename descclassname"><span class="pre">nntplib.</span></span><span class="sig-name descname"><span class="pre">NNTPProtocolError</span></span><a class="headerlink" href="#nntplib.NNTPProtocolError" title="Link to this definition">¶</a></dt>
  328. <dd><p>Exception raised when a reply is received from the server that does not begin
  329. with a digit in the range 1–5.</p>
  330. </dd></dl>
  331. <dl class="py exception">
  332. <dt class="sig sig-object py" id="nntplib.NNTPDataError">
  333. <em class="property"><span class="pre">exception</span><span class="w"> </span></em><span class="sig-prename descclassname"><span class="pre">nntplib.</span></span><span class="sig-name descname"><span class="pre">NNTPDataError</span></span><a class="headerlink" href="#nntplib.NNTPDataError" title="Link to this definition">¶</a></dt>
  334. <dd><p>Exception raised when there is some error in the response data.</p>
  335. </dd></dl>
  336. <section id="nntp-objects">
  337. <span id="id1"></span><h2>NNTP Objects<a class="headerlink" href="#nntp-objects" title="Link to this heading">¶</a></h2>
  338. <p>When connected, <a class="reference internal" href="#nntplib.NNTP" title="nntplib.NNTP"><code class="xref py py-class docutils literal notranslate"><span class="pre">NNTP</span></code></a> and <a class="reference internal" href="#nntplib.NNTP_SSL" title="nntplib.NNTP_SSL"><code class="xref py py-class docutils literal notranslate"><span class="pre">NNTP_SSL</span></code></a> objects support the
  339. following methods and attributes.</p>
  340. <section id="attributes">
  341. <h3>Attributes<a class="headerlink" href="#attributes" title="Link to this heading">¶</a></h3>
  342. <dl class="py attribute">
  343. <dt class="sig sig-object py" id="nntplib.NNTP.nntp_version">
  344. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">nntp_version</span></span><a class="headerlink" href="#nntplib.NNTP.nntp_version" title="Link to this definition">¶</a></dt>
  345. <dd><p>An integer representing the version of the NNTP protocol supported by the
  346. server. In practice, this should be <code class="docutils literal notranslate"><span class="pre">2</span></code> for servers advertising
  347. <span class="target" id="index-6"></span><a class="rfc reference external" href="https://datatracker.ietf.org/doc/html/rfc3977.html"><strong>RFC 3977</strong></a> compliance and <code class="docutils literal notranslate"><span class="pre">1</span></code> for others.</p>
  348. <div class="versionadded">
  349. <p><span class="versionmodified added">New in version 3.2.</span></p>
  350. </div>
  351. </dd></dl>
  352. <dl class="py attribute">
  353. <dt class="sig sig-object py" id="nntplib.NNTP.nntp_implementation">
  354. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">nntp_implementation</span></span><a class="headerlink" href="#nntplib.NNTP.nntp_implementation" title="Link to this definition">¶</a></dt>
  355. <dd><p>A string describing the software name and version of the NNTP server,
  356. or <a class="reference internal" href="constants.html#None" title="None"><code class="xref py py-const docutils literal notranslate"><span class="pre">None</span></code></a> if not advertised by the server.</p>
  357. <div class="versionadded">
  358. <p><span class="versionmodified added">New in version 3.2.</span></p>
  359. </div>
  360. </dd></dl>
  361. </section>
  362. <section id="methods">
  363. <h3>Methods<a class="headerlink" href="#methods" title="Link to this heading">¶</a></h3>
  364. <p>The <em>response</em> that is returned as the first item in the return tuple of almost
  365. all methods is the server’s response: a string beginning with a three-digit
  366. code. If the server’s response indicates an error, the method raises one of
  367. the above exceptions.</p>
  368. <p>Many of the following methods take an optional keyword-only argument <em>file</em>.
  369. When the <em>file</em> argument is supplied, it must be either a <a class="reference internal" href="../glossary.html#term-file-object"><span class="xref std std-term">file object</span></a>
  370. opened for binary writing, or the name of an on-disk file to be written to.
  371. The method will then write any data returned by the server (except for the
  372. response line and the terminating dot) to the file; any list of lines,
  373. tuples or objects that the method normally returns will be empty.</p>
  374. <div class="versionchanged">
  375. <p><span class="versionmodified changed">Changed in version 3.2: </span>Many of the following methods have been reworked and fixed, which makes
  376. them incompatible with their 3.1 counterparts.</p>
  377. </div>
  378. <dl class="py method">
  379. <dt class="sig sig-object py" id="nntplib.NNTP.quit">
  380. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">quit</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.quit" title="Link to this definition">¶</a></dt>
  381. <dd><p>Send a <code class="docutils literal notranslate"><span class="pre">QUIT</span></code> command and close the connection. Once this method has been
  382. called, no other methods of the NNTP object should be called.</p>
  383. </dd></dl>
  384. <dl class="py method">
  385. <dt class="sig sig-object py" id="nntplib.NNTP.getwelcome">
  386. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">getwelcome</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.getwelcome" title="Link to this definition">¶</a></dt>
  387. <dd><p>Return the welcome message sent by the server in reply to the initial
  388. connection. (This message sometimes contains disclaimers or help information
  389. that may be relevant to the user.)</p>
  390. </dd></dl>
  391. <dl class="py method">
  392. <dt class="sig sig-object py" id="nntplib.NNTP.getcapabilities">
  393. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">getcapabilities</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.getcapabilities" title="Link to this definition">¶</a></dt>
  394. <dd><p>Return the <span class="target" id="index-7"></span><a class="rfc reference external" href="https://datatracker.ietf.org/doc/html/rfc3977.html"><strong>RFC 3977</strong></a> capabilities advertised by the server, as a
  395. <a class="reference internal" href="stdtypes.html#dict" title="dict"><code class="xref py py-class docutils literal notranslate"><span class="pre">dict</span></code></a> instance mapping capability names to (possibly empty) lists
  396. of values. On legacy servers which don’t understand the <code class="docutils literal notranslate"><span class="pre">CAPABILITIES</span></code>
  397. command, an empty dictionary is returned instead.</p>
  398. <div class="doctest highlight-default notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="n">s</span> <span class="o">=</span> <span class="n">NNTP</span><span class="p">(</span><span class="s1">&#39;news.gmane.io&#39;</span><span class="p">)</span>
  399. <span class="gp">&gt;&gt;&gt; </span><span class="s1">&#39;POST&#39;</span> <span class="ow">in</span> <span class="n">s</span><span class="o">.</span><span class="n">getcapabilities</span><span class="p">()</span>
  400. <span class="go">True</span>
  401. </pre></div>
  402. </div>
  403. <div class="versionadded">
  404. <p><span class="versionmodified added">New in version 3.2.</span></p>
  405. </div>
  406. </dd></dl>
  407. <dl class="py method">
  408. <dt class="sig sig-object py" id="nntplib.NNTP.login">
  409. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">login</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">user</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">password</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">usenetrc</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">True</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.login" title="Link to this definition">¶</a></dt>
  410. <dd><p>Send <code class="docutils literal notranslate"><span class="pre">AUTHINFO</span></code> commands with the user name and password. If <em>user</em>
  411. and <em>password</em> are <code class="docutils literal notranslate"><span class="pre">None</span></code> and <em>usenetrc</em> is true, credentials from
  412. <code class="docutils literal notranslate"><span class="pre">~/.netrc</span></code> will be used if possible.</p>
  413. <p>Unless intentionally delayed, login is normally performed during the
  414. <a class="reference internal" href="#nntplib.NNTP" title="nntplib.NNTP"><code class="xref py py-class docutils literal notranslate"><span class="pre">NNTP</span></code></a> object initialization and separately calling this function
  415. is unnecessary. To force authentication to be delayed, you must not set
  416. <em>user</em> or <em>password</em> when creating the object, and must set <em>usenetrc</em> to
  417. False.</p>
  418. <div class="versionadded">
  419. <p><span class="versionmodified added">New in version 3.2.</span></p>
  420. </div>
  421. </dd></dl>
  422. <dl class="py method">
  423. <dt class="sig sig-object py" id="nntplib.NNTP.starttls">
  424. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">starttls</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">context</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.starttls" title="Link to this definition">¶</a></dt>
  425. <dd><p>Send a <code class="docutils literal notranslate"><span class="pre">STARTTLS</span></code> command. This will enable encryption on the NNTP
  426. connection. The <em>context</em> argument is optional and should be a
  427. <a class="reference internal" href="ssl.html#ssl.SSLContext" title="ssl.SSLContext"><code class="xref py py-class docutils literal notranslate"><span class="pre">ssl.SSLContext</span></code></a> object. Please read <a class="reference internal" href="ssl.html#ssl-security"><span class="std std-ref">Security considerations</span></a> for best
  428. practices.</p>
  429. <p>Note that this may not be done after authentication information has
  430. been transmitted, and authentication occurs by default if possible during a
  431. <a class="reference internal" href="#nntplib.NNTP" title="nntplib.NNTP"><code class="xref py py-class docutils literal notranslate"><span class="pre">NNTP</span></code></a> object initialization. See <a class="reference internal" href="#nntplib.NNTP.login" title="nntplib.NNTP.login"><code class="xref py py-meth docutils literal notranslate"><span class="pre">NNTP.login()</span></code></a> for information
  432. on suppressing this behavior.</p>
  433. <div class="versionadded">
  434. <p><span class="versionmodified added">New in version 3.2.</span></p>
  435. </div>
  436. <div class="versionchanged">
  437. <p><span class="versionmodified changed">Changed in version 3.4: </span>The method now supports hostname check with
  438. <a class="reference internal" href="ssl.html#ssl.SSLContext.check_hostname" title="ssl.SSLContext.check_hostname"><code class="xref py py-attr docutils literal notranslate"><span class="pre">ssl.SSLContext.check_hostname</span></code></a> and <em>Server Name Indication</em> (see
  439. <a class="reference internal" href="ssl.html#ssl.HAS_SNI" title="ssl.HAS_SNI"><code class="xref py py-data docutils literal notranslate"><span class="pre">ssl.HAS_SNI</span></code></a>).</p>
  440. </div>
  441. </dd></dl>
  442. <dl class="py method">
  443. <dt class="sig sig-object py" id="nntplib.NNTP.newgroups">
  444. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">newgroups</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">date</span></span></em>, <em class="sig-param"><span class="o"><span class="pre">*</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">file</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.newgroups" title="Link to this definition">¶</a></dt>
  445. <dd><p>Send a <code class="docutils literal notranslate"><span class="pre">NEWGROUPS</span></code> command. The <em>date</em> argument should be a
  446. <a class="reference internal" href="datetime.html#datetime.date" title="datetime.date"><code class="xref py py-class docutils literal notranslate"><span class="pre">datetime.date</span></code></a> or <a class="reference internal" href="datetime.html#datetime.datetime" title="datetime.datetime"><code class="xref py py-class docutils literal notranslate"><span class="pre">datetime.datetime</span></code></a> object.
  447. Return a pair <code class="docutils literal notranslate"><span class="pre">(response,</span> <span class="pre">groups)</span></code> where <em>groups</em> is a list representing
  448. the groups that are new since the given <em>date</em>. If <em>file</em> is supplied,
  449. though, then <em>groups</em> will be empty.</p>
  450. <div class="doctest highlight-default notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="kn">from</span> <span class="nn">datetime</span> <span class="kn">import</span> <span class="n">date</span><span class="p">,</span> <span class="n">timedelta</span>
  451. <span class="gp">&gt;&gt;&gt; </span><span class="n">resp</span><span class="p">,</span> <span class="n">groups</span> <span class="o">=</span> <span class="n">s</span><span class="o">.</span><span class="n">newgroups</span><span class="p">(</span><span class="n">date</span><span class="o">.</span><span class="n">today</span><span class="p">()</span> <span class="o">-</span> <span class="n">timedelta</span><span class="p">(</span><span class="n">days</span><span class="o">=</span><span class="mi">3</span><span class="p">))</span>
  452. <span class="gp">&gt;&gt;&gt; </span><span class="nb">len</span><span class="p">(</span><span class="n">groups</span><span class="p">)</span>
  453. <span class="go">85</span>
  454. <span class="gp">&gt;&gt;&gt; </span><span class="n">groups</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span>
  455. <span class="go">GroupInfo(group=&#39;gmane.network.tor.devel&#39;, last=&#39;4&#39;, first=&#39;1&#39;, flag=&#39;m&#39;)</span>
  456. </pre></div>
  457. </div>
  458. </dd></dl>
  459. <dl class="py method">
  460. <dt class="sig sig-object py" id="nntplib.NNTP.newnews">
  461. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">newnews</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">group</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">date</span></span></em>, <em class="sig-param"><span class="o"><span class="pre">*</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">file</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.newnews" title="Link to this definition">¶</a></dt>
  462. <dd><p>Send a <code class="docutils literal notranslate"><span class="pre">NEWNEWS</span></code> command. Here, <em>group</em> is a group name or <code class="docutils literal notranslate"><span class="pre">'*'</span></code>, and
  463. <em>date</em> has the same meaning as for <a class="reference internal" href="#nntplib.NNTP.newgroups" title="nntplib.NNTP.newgroups"><code class="xref py py-meth docutils literal notranslate"><span class="pre">newgroups()</span></code></a>. Return a pair
  464. <code class="docutils literal notranslate"><span class="pre">(response,</span> <span class="pre">articles)</span></code> where <em>articles</em> is a list of message ids.</p>
  465. <p>This command is frequently disabled by NNTP server administrators.</p>
  466. </dd></dl>
  467. <dl class="py method">
  468. <dt class="sig sig-object py" id="nntplib.NNTP.list">
  469. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">list</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">group_pattern</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="o"><span class="pre">*</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">file</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.list" title="Link to this definition">¶</a></dt>
  470. <dd><p>Send a <code class="docutils literal notranslate"><span class="pre">LIST</span></code> or <code class="docutils literal notranslate"><span class="pre">LIST</span> <span class="pre">ACTIVE</span></code> command. Return a pair
  471. <code class="docutils literal notranslate"><span class="pre">(response,</span> <span class="pre">list)</span></code> where <em>list</em> is a list of tuples representing all
  472. the groups available from this NNTP server, optionally matching the
  473. pattern string <em>group_pattern</em>. Each tuple has the form
  474. <code class="docutils literal notranslate"><span class="pre">(group,</span> <span class="pre">last,</span> <span class="pre">first,</span> <span class="pre">flag)</span></code>, where <em>group</em> is a group name, <em>last</em>
  475. and <em>first</em> are the last and first article numbers, and <em>flag</em> usually
  476. takes one of these values:</p>
  477. <ul class="simple">
  478. <li><p><code class="docutils literal notranslate"><span class="pre">y</span></code>: Local postings and articles from peers are allowed.</p></li>
  479. <li><p><code class="docutils literal notranslate"><span class="pre">m</span></code>: The group is moderated and all postings must be approved.</p></li>
  480. <li><p><code class="docutils literal notranslate"><span class="pre">n</span></code>: No local postings are allowed, only articles from peers.</p></li>
  481. <li><p><code class="docutils literal notranslate"><span class="pre">j</span></code>: Articles from peers are filed in the junk group instead.</p></li>
  482. <li><p><code class="docutils literal notranslate"><span class="pre">x</span></code>: No local postings, and articles from peers are ignored.</p></li>
  483. <li><p><code class="docutils literal notranslate"><span class="pre">=foo.bar</span></code>: Articles are filed in the <code class="docutils literal notranslate"><span class="pre">foo.bar</span></code> group instead.</p></li>
  484. </ul>
  485. <p>If <em>flag</em> has another value, then the status of the newsgroup should be
  486. considered unknown.</p>
  487. <p>This command can return very large results, especially if <em>group_pattern</em>
  488. is not specified. It is best to cache the results offline unless you
  489. really need to refresh them.</p>
  490. <div class="versionchanged">
  491. <p><span class="versionmodified changed">Changed in version 3.2: </span><em>group_pattern</em> was added.</p>
  492. </div>
  493. </dd></dl>
  494. <dl class="py method">
  495. <dt class="sig sig-object py" id="nntplib.NNTP.descriptions">
  496. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">descriptions</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">grouppattern</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.descriptions" title="Link to this definition">¶</a></dt>
  497. <dd><p>Send a <code class="docutils literal notranslate"><span class="pre">LIST</span> <span class="pre">NEWSGROUPS</span></code> command, where <em>grouppattern</em> is a wildmat string as
  498. specified in <span class="target" id="index-8"></span><a class="rfc reference external" href="https://datatracker.ietf.org/doc/html/rfc3977.html"><strong>RFC 3977</strong></a> (it’s essentially the same as DOS or UNIX shell wildcard
  499. strings). Return a pair <code class="docutils literal notranslate"><span class="pre">(response,</span> <span class="pre">descriptions)</span></code>, where <em>descriptions</em>
  500. is a dictionary mapping group names to textual descriptions.</p>
  501. <div class="doctest highlight-default notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="n">resp</span><span class="p">,</span> <span class="n">descs</span> <span class="o">=</span> <span class="n">s</span><span class="o">.</span><span class="n">descriptions</span><span class="p">(</span><span class="s1">&#39;gmane.comp.python.*&#39;</span><span class="p">)</span>
  502. <span class="gp">&gt;&gt;&gt; </span><span class="nb">len</span><span class="p">(</span><span class="n">descs</span><span class="p">)</span>
  503. <span class="go">295</span>
  504. <span class="gp">&gt;&gt;&gt; </span><span class="n">descs</span><span class="o">.</span><span class="n">popitem</span><span class="p">()</span>
  505. <span class="go">(&#39;gmane.comp.python.bio.general&#39;, &#39;BioPython discussion list (Moderated)&#39;)</span>
  506. </pre></div>
  507. </div>
  508. </dd></dl>
  509. <dl class="py method">
  510. <dt class="sig sig-object py" id="nntplib.NNTP.description">
  511. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">description</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">group</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.description" title="Link to this definition">¶</a></dt>
  512. <dd><p>Get a description for a single group <em>group</em>. If more than one group matches
  513. (if ‘group’ is a real wildmat string), return the first match. If no group
  514. matches, return an empty string.</p>
  515. <p>This elides the response code from the server. If the response code is needed,
  516. use <a class="reference internal" href="#nntplib.NNTP.descriptions" title="nntplib.NNTP.descriptions"><code class="xref py py-meth docutils literal notranslate"><span class="pre">descriptions()</span></code></a>.</p>
  517. </dd></dl>
  518. <dl class="py method">
  519. <dt class="sig sig-object py" id="nntplib.NNTP.group">
  520. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">group</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">name</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.group" title="Link to this definition">¶</a></dt>
  521. <dd><p>Send a <code class="docutils literal notranslate"><span class="pre">GROUP</span></code> command, where <em>name</em> is the group name. The group is
  522. selected as the current group, if it exists. Return a tuple
  523. <code class="docutils literal notranslate"><span class="pre">(response,</span> <span class="pre">count,</span> <span class="pre">first,</span> <span class="pre">last,</span> <span class="pre">name)</span></code> where <em>count</em> is the (estimated)
  524. number of articles in the group, <em>first</em> is the first article number in
  525. the group, <em>last</em> is the last article number in the group, and <em>name</em>
  526. is the group name.</p>
  527. </dd></dl>
  528. <dl class="py method">
  529. <dt class="sig sig-object py" id="nntplib.NNTP.over">
  530. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">over</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">message_spec</span></span></em>, <em class="sig-param"><span class="o"><span class="pre">*</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">file</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.over" title="Link to this definition">¶</a></dt>
  531. <dd><p>Send an <code class="docutils literal notranslate"><span class="pre">OVER</span></code> command, or an <code class="docutils literal notranslate"><span class="pre">XOVER</span></code> command on legacy servers.
  532. <em>message_spec</em> can be either a string representing a message id, or
  533. a <code class="docutils literal notranslate"><span class="pre">(first,</span> <span class="pre">last)</span></code> tuple of numbers indicating a range of articles in
  534. the current group, or a <code class="docutils literal notranslate"><span class="pre">(first,</span> <span class="pre">None)</span></code> tuple indicating a range of
  535. articles starting from <em>first</em> to the last article in the current group,
  536. or <a class="reference internal" href="constants.html#None" title="None"><code class="xref py py-const docutils literal notranslate"><span class="pre">None</span></code></a> to select the current article in the current group.</p>
  537. <p>Return a pair <code class="docutils literal notranslate"><span class="pre">(response,</span> <span class="pre">overviews)</span></code>. <em>overviews</em> is a list of
  538. <code class="docutils literal notranslate"><span class="pre">(article_number,</span> <span class="pre">overview)</span></code> tuples, one for each article selected
  539. by <em>message_spec</em>. Each <em>overview</em> is a dictionary with the same number
  540. of items, but this number depends on the server. These items are either
  541. message headers (the key is then the lower-cased header name) or metadata
  542. items (the key is then the metadata name prepended with <code class="docutils literal notranslate"><span class="pre">&quot;:&quot;</span></code>). The
  543. following items are guaranteed to be present by the NNTP specification:</p>
  544. <ul class="simple">
  545. <li><p>the <code class="docutils literal notranslate"><span class="pre">subject</span></code>, <code class="docutils literal notranslate"><span class="pre">from</span></code>, <code class="docutils literal notranslate"><span class="pre">date</span></code>, <code class="docutils literal notranslate"><span class="pre">message-id</span></code> and <code class="docutils literal notranslate"><span class="pre">references</span></code>
  546. headers</p></li>
  547. <li><p>the <code class="docutils literal notranslate"><span class="pre">:bytes</span></code> metadata: the number of bytes in the entire raw article
  548. (including headers and body)</p></li>
  549. <li><p>the <code class="docutils literal notranslate"><span class="pre">:lines</span></code> metadata: the number of lines in the article body</p></li>
  550. </ul>
  551. <p>The value of each item is either a string, or <a class="reference internal" href="constants.html#None" title="None"><code class="xref py py-const docutils literal notranslate"><span class="pre">None</span></code></a> if not present.</p>
  552. <p>It is advisable to use the <a class="reference internal" href="#nntplib.decode_header" title="nntplib.decode_header"><code class="xref py py-func docutils literal notranslate"><span class="pre">decode_header()</span></code></a> function on header
  553. values when they may contain non-ASCII characters:</p>
  554. <div class="highlight-python3 notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="n">_</span><span class="p">,</span> <span class="n">_</span><span class="p">,</span> <span class="n">first</span><span class="p">,</span> <span class="n">last</span><span class="p">,</span> <span class="n">_</span> <span class="o">=</span> <span class="n">s</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="s1">&#39;gmane.comp.python.devel&#39;</span><span class="p">)</span>
  555. <span class="gp">&gt;&gt;&gt; </span><span class="n">resp</span><span class="p">,</span> <span class="n">overviews</span> <span class="o">=</span> <span class="n">s</span><span class="o">.</span><span class="n">over</span><span class="p">((</span><span class="n">last</span><span class="p">,</span> <span class="n">last</span><span class="p">))</span>
  556. <span class="gp">&gt;&gt;&gt; </span><span class="n">art_num</span><span class="p">,</span> <span class="n">over</span> <span class="o">=</span> <span class="n">overviews</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span>
  557. <span class="gp">&gt;&gt;&gt; </span><span class="n">art_num</span>
  558. <span class="go">117216</span>
  559. <span class="gp">&gt;&gt;&gt; </span><span class="nb">list</span><span class="p">(</span><span class="n">over</span><span class="o">.</span><span class="n">keys</span><span class="p">())</span>
  560. <span class="go">[&#39;xref&#39;, &#39;from&#39;, &#39;:lines&#39;, &#39;:bytes&#39;, &#39;references&#39;, &#39;date&#39;, &#39;message-id&#39;, &#39;subject&#39;]</span>
  561. <span class="gp">&gt;&gt;&gt; </span><span class="n">over</span><span class="p">[</span><span class="s1">&#39;from&#39;</span><span class="p">]</span>
  562. <span class="go">&#39;=?UTF-8?B?Ik1hcnRpbiB2LiBMw7Z3aXMi?= &lt;martin@v.loewis.de&gt;&#39;</span>
  563. <span class="gp">&gt;&gt;&gt; </span><span class="n">nntplib</span><span class="o">.</span><span class="n">decode_header</span><span class="p">(</span><span class="n">over</span><span class="p">[</span><span class="s1">&#39;from&#39;</span><span class="p">])</span>
  564. <span class="go">&#39;&quot;Martin v. Löwis&quot; &lt;martin@v.loewis.de&gt;&#39;</span>
  565. </pre></div>
  566. </div>
  567. <div class="versionadded">
  568. <p><span class="versionmodified added">New in version 3.2.</span></p>
  569. </div>
  570. </dd></dl>
  571. <dl class="py method">
  572. <dt class="sig sig-object py" id="nntplib.NNTP.help">
  573. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">help</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="o"><span class="pre">*</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">file</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.help" title="Link to this definition">¶</a></dt>
  574. <dd><p>Send a <code class="docutils literal notranslate"><span class="pre">HELP</span></code> command. Return a pair <code class="docutils literal notranslate"><span class="pre">(response,</span> <span class="pre">list)</span></code> where <em>list</em> is a
  575. list of help strings.</p>
  576. </dd></dl>
  577. <dl class="py method">
  578. <dt class="sig sig-object py" id="nntplib.NNTP.stat">
  579. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">stat</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">message_spec</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.stat" title="Link to this definition">¶</a></dt>
  580. <dd><p>Send a <code class="docutils literal notranslate"><span class="pre">STAT</span></code> command, where <em>message_spec</em> is either a message id
  581. (enclosed in <code class="docutils literal notranslate"><span class="pre">'&lt;'</span></code> and <code class="docutils literal notranslate"><span class="pre">'&gt;'</span></code>) or an article number in the current group.
  582. If <em>message_spec</em> is omitted or <a class="reference internal" href="constants.html#None" title="None"><code class="xref py py-const docutils literal notranslate"><span class="pre">None</span></code></a>, the current article in the
  583. current group is considered. Return a triple <code class="docutils literal notranslate"><span class="pre">(response,</span> <span class="pre">number,</span> <span class="pre">id)</span></code>
  584. where <em>number</em> is the article number and <em>id</em> is the message id.</p>
  585. <div class="doctest highlight-default notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="n">_</span><span class="p">,</span> <span class="n">_</span><span class="p">,</span> <span class="n">first</span><span class="p">,</span> <span class="n">last</span><span class="p">,</span> <span class="n">_</span> <span class="o">=</span> <span class="n">s</span><span class="o">.</span><span class="n">group</span><span class="p">(</span><span class="s1">&#39;gmane.comp.python.devel&#39;</span><span class="p">)</span>
  586. <span class="gp">&gt;&gt;&gt; </span><span class="n">resp</span><span class="p">,</span> <span class="n">number</span><span class="p">,</span> <span class="n">message_id</span> <span class="o">=</span> <span class="n">s</span><span class="o">.</span><span class="n">stat</span><span class="p">(</span><span class="n">first</span><span class="p">)</span>
  587. <span class="gp">&gt;&gt;&gt; </span><span class="n">number</span><span class="p">,</span> <span class="n">message_id</span>
  588. <span class="go">(9099, &#39;&lt;20030112190404.GE29873@epoch.metaslash.com&gt;&#39;)</span>
  589. </pre></div>
  590. </div>
  591. </dd></dl>
  592. <dl class="py method">
  593. <dt class="sig sig-object py" id="nntplib.NNTP.next">
  594. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">next</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.next" title="Link to this definition">¶</a></dt>
  595. <dd><p>Send a <code class="docutils literal notranslate"><span class="pre">NEXT</span></code> command. Return as for <a class="reference internal" href="#nntplib.NNTP.stat" title="nntplib.NNTP.stat"><code class="xref py py-meth docutils literal notranslate"><span class="pre">stat()</span></code></a>.</p>
  596. </dd></dl>
  597. <dl class="py method">
  598. <dt class="sig sig-object py" id="nntplib.NNTP.last">
  599. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">last</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.last" title="Link to this definition">¶</a></dt>
  600. <dd><p>Send a <code class="docutils literal notranslate"><span class="pre">LAST</span></code> command. Return as for <a class="reference internal" href="#nntplib.NNTP.stat" title="nntplib.NNTP.stat"><code class="xref py py-meth docutils literal notranslate"><span class="pre">stat()</span></code></a>.</p>
  601. </dd></dl>
  602. <dl class="py method">
  603. <dt class="sig sig-object py" id="nntplib.NNTP.article">
  604. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">article</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">message_spec</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="o"><span class="pre">*</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">file</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.article" title="Link to this definition">¶</a></dt>
  605. <dd><p>Send an <code class="docutils literal notranslate"><span class="pre">ARTICLE</span></code> command, where <em>message_spec</em> has the same meaning as
  606. for <a class="reference internal" href="#nntplib.NNTP.stat" title="nntplib.NNTP.stat"><code class="xref py py-meth docutils literal notranslate"><span class="pre">stat()</span></code></a>. Return a tuple <code class="docutils literal notranslate"><span class="pre">(response,</span> <span class="pre">info)</span></code> where <em>info</em>
  607. is a <a class="reference internal" href="collections.html#collections.namedtuple" title="collections.namedtuple"><code class="xref py py-class docutils literal notranslate"><span class="pre">namedtuple</span></code></a> with three attributes <em>number</em>,
  608. <em>message_id</em> and <em>lines</em> (in that order). <em>number</em> is the article number
  609. in the group (or 0 if the information is not available), <em>message_id</em> the
  610. message id as a string, and <em>lines</em> a list of lines (without terminating
  611. newlines) comprising the raw message including headers and body.</p>
  612. <div class="doctest highlight-default notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="n">resp</span><span class="p">,</span> <span class="n">info</span> <span class="o">=</span> <span class="n">s</span><span class="o">.</span><span class="n">article</span><span class="p">(</span><span class="s1">&#39;&lt;20030112190404.GE29873@epoch.metaslash.com&gt;&#39;</span><span class="p">)</span>
  613. <span class="gp">&gt;&gt;&gt; </span><span class="n">info</span><span class="o">.</span><span class="n">number</span>
  614. <span class="go">0</span>
  615. <span class="gp">&gt;&gt;&gt; </span><span class="n">info</span><span class="o">.</span><span class="n">message_id</span>
  616. <span class="go">&#39;&lt;20030112190404.GE29873@epoch.metaslash.com&gt;&#39;</span>
  617. <span class="gp">&gt;&gt;&gt; </span><span class="nb">len</span><span class="p">(</span><span class="n">info</span><span class="o">.</span><span class="n">lines</span><span class="p">)</span>
  618. <span class="go">65</span>
  619. <span class="gp">&gt;&gt;&gt; </span><span class="n">info</span><span class="o">.</span><span class="n">lines</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span>
  620. <span class="go">b&#39;Path: main.gmane.org!not-for-mail&#39;</span>
  621. <span class="gp">&gt;&gt;&gt; </span><span class="n">info</span><span class="o">.</span><span class="n">lines</span><span class="p">[</span><span class="mi">1</span><span class="p">]</span>
  622. <span class="go">b&#39;From: Neal Norwitz &lt;neal@metaslash.com&gt;&#39;</span>
  623. <span class="gp">&gt;&gt;&gt; </span><span class="n">info</span><span class="o">.</span><span class="n">lines</span><span class="p">[</span><span class="o">-</span><span class="mi">3</span><span class="p">:]</span>
  624. <span class="go">[b&#39;There is a patch for 2.3 as well as 2.2.&#39;, b&#39;&#39;, b&#39;Neal&#39;]</span>
  625. </pre></div>
  626. </div>
  627. </dd></dl>
  628. <dl class="py method">
  629. <dt class="sig sig-object py" id="nntplib.NNTP.head">
  630. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">head</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">message_spec</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="o"><span class="pre">*</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">file</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.head" title="Link to this definition">¶</a></dt>
  631. <dd><p>Same as <a class="reference internal" href="#nntplib.NNTP.article" title="nntplib.NNTP.article"><code class="xref py py-meth docutils literal notranslate"><span class="pre">article()</span></code></a>, but sends a <code class="docutils literal notranslate"><span class="pre">HEAD</span></code> command. The <em>lines</em>
  632. returned (or written to <em>file</em>) will only contain the message headers, not
  633. the body.</p>
  634. </dd></dl>
  635. <dl class="py method">
  636. <dt class="sig sig-object py" id="nntplib.NNTP.body">
  637. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">body</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">message_spec</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="o"><span class="pre">*</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">file</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.body" title="Link to this definition">¶</a></dt>
  638. <dd><p>Same as <a class="reference internal" href="#nntplib.NNTP.article" title="nntplib.NNTP.article"><code class="xref py py-meth docutils literal notranslate"><span class="pre">article()</span></code></a>, but sends a <code class="docutils literal notranslate"><span class="pre">BODY</span></code> command. The <em>lines</em>
  639. returned (or written to <em>file</em>) will only contain the message body, not the
  640. headers.</p>
  641. </dd></dl>
  642. <dl class="py method">
  643. <dt class="sig sig-object py" id="nntplib.NNTP.post">
  644. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">post</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">data</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.post" title="Link to this definition">¶</a></dt>
  645. <dd><p>Post an article using the <code class="docutils literal notranslate"><span class="pre">POST</span></code> command. The <em>data</em> argument is either
  646. a <a class="reference internal" href="../glossary.html#term-file-object"><span class="xref std std-term">file object</span></a> opened for binary reading, or any iterable of bytes
  647. objects (representing raw lines of the article to be posted). It should
  648. represent a well-formed news article, including the required headers. The
  649. <a class="reference internal" href="#nntplib.NNTP.post" title="nntplib.NNTP.post"><code class="xref py py-meth docutils literal notranslate"><span class="pre">post()</span></code></a> method automatically escapes lines beginning with <code class="docutils literal notranslate"><span class="pre">.</span></code> and
  650. appends the termination line.</p>
  651. <p>If the method succeeds, the server’s response is returned. If the server
  652. refuses posting, a <a class="reference internal" href="#nntplib.NNTPReplyError" title="nntplib.NNTPReplyError"><code class="xref py py-class docutils literal notranslate"><span class="pre">NNTPReplyError</span></code></a> is raised.</p>
  653. </dd></dl>
  654. <dl class="py method">
  655. <dt class="sig sig-object py" id="nntplib.NNTP.ihave">
  656. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">ihave</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">message_id</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">data</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.ihave" title="Link to this definition">¶</a></dt>
  657. <dd><p>Send an <code class="docutils literal notranslate"><span class="pre">IHAVE</span></code> command. <em>message_id</em> is the id of the message to send
  658. to the server (enclosed in <code class="docutils literal notranslate"><span class="pre">'&lt;'</span></code> and <code class="docutils literal notranslate"><span class="pre">'&gt;'</span></code>). The <em>data</em> parameter
  659. and the return value are the same as for <a class="reference internal" href="#nntplib.NNTP.post" title="nntplib.NNTP.post"><code class="xref py py-meth docutils literal notranslate"><span class="pre">post()</span></code></a>.</p>
  660. </dd></dl>
  661. <dl class="py method">
  662. <dt class="sig sig-object py" id="nntplib.NNTP.date">
  663. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">date</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.date" title="Link to this definition">¶</a></dt>
  664. <dd><p>Return a pair <code class="docutils literal notranslate"><span class="pre">(response,</span> <span class="pre">date)</span></code>. <em>date</em> is a <a class="reference internal" href="datetime.html#datetime.datetime" title="datetime.datetime"><code class="xref py py-class docutils literal notranslate"><span class="pre">datetime</span></code></a>
  665. object containing the current date and time of the server.</p>
  666. </dd></dl>
  667. <dl class="py method">
  668. <dt class="sig sig-object py" id="nntplib.NNTP.slave">
  669. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">slave</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.slave" title="Link to this definition">¶</a></dt>
  670. <dd><p>Send a <code class="docutils literal notranslate"><span class="pre">SLAVE</span></code> command. Return the server’s <em>response</em>.</p>
  671. </dd></dl>
  672. <dl class="py method">
  673. <dt class="sig sig-object py" id="nntplib.NNTP.set_debuglevel">
  674. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">set_debuglevel</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">level</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.set_debuglevel" title="Link to this definition">¶</a></dt>
  675. <dd><p>Set the instance’s debugging level. This controls the amount of debugging
  676. output printed. The default, <code class="docutils literal notranslate"><span class="pre">0</span></code>, produces no debugging output. A value of
  677. <code class="docutils literal notranslate"><span class="pre">1</span></code> produces a moderate amount of debugging output, generally a single line
  678. per request or response. A value of <code class="docutils literal notranslate"><span class="pre">2</span></code> or higher produces the maximum amount
  679. of debugging output, logging each line sent and received on the connection
  680. (including message text).</p>
  681. </dd></dl>
  682. <p>The following are optional NNTP extensions defined in <span class="target" id="index-9"></span><a class="rfc reference external" href="https://datatracker.ietf.org/doc/html/rfc2980.html"><strong>RFC 2980</strong></a>. Some of
  683. them have been superseded by newer commands in <span class="target" id="index-10"></span><a class="rfc reference external" href="https://datatracker.ietf.org/doc/html/rfc3977.html"><strong>RFC 3977</strong></a>.</p>
  684. <dl class="py method">
  685. <dt class="sig sig-object py" id="nntplib.NNTP.xhdr">
  686. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">xhdr</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">hdr</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">str</span></span></em>, <em class="sig-param"><span class="o"><span class="pre">*</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">file</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.xhdr" title="Link to this definition">¶</a></dt>
  687. <dd><p>Send an <code class="docutils literal notranslate"><span class="pre">XHDR</span></code> command. The <em>hdr</em> argument is a header keyword, e.g.
  688. <code class="docutils literal notranslate"><span class="pre">'subject'</span></code>. The <em>str</em> argument should have the form <code class="docutils literal notranslate"><span class="pre">'first-last'</span></code>
  689. where <em>first</em> and <em>last</em> are the first and last article numbers to search.
  690. Return a pair <code class="docutils literal notranslate"><span class="pre">(response,</span> <span class="pre">list)</span></code>, where <em>list</em> is a list of pairs <code class="docutils literal notranslate"><span class="pre">(id,</span>
  691. <span class="pre">text)</span></code>, where <em>id</em> is an article number (as a string) and <em>text</em> is the text of
  692. the requested header for that article. If the <em>file</em> parameter is supplied, then
  693. the output of the <code class="docutils literal notranslate"><span class="pre">XHDR</span></code> command is stored in a file. If <em>file</em> is a string,
  694. then the method will open a file with that name, write to it then close it.
  695. If <em>file</em> is a <a class="reference internal" href="../glossary.html#term-file-object"><span class="xref std std-term">file object</span></a>, then it will start calling <code class="xref py py-meth docutils literal notranslate"><span class="pre">write()</span></code> on
  696. it to store the lines of the command output. If <em>file</em> is supplied, then the
  697. returned <em>list</em> is an empty list.</p>
  698. </dd></dl>
  699. <dl class="py method">
  700. <dt class="sig sig-object py" id="nntplib.NNTP.xover">
  701. <span class="sig-prename descclassname"><span class="pre">NNTP.</span></span><span class="sig-name descname"><span class="pre">xover</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">start</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">end</span></span></em>, <em class="sig-param"><span class="o"><span class="pre">*</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">file</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.NNTP.xover" title="Link to this definition">¶</a></dt>
  702. <dd><p>Send an <code class="docutils literal notranslate"><span class="pre">XOVER</span></code> command. <em>start</em> and <em>end</em> are article numbers
  703. delimiting the range of articles to select. The return value is the
  704. same of for <a class="reference internal" href="#nntplib.NNTP.over" title="nntplib.NNTP.over"><code class="xref py py-meth docutils literal notranslate"><span class="pre">over()</span></code></a>. It is recommended to use <a class="reference internal" href="#nntplib.NNTP.over" title="nntplib.NNTP.over"><code class="xref py py-meth docutils literal notranslate"><span class="pre">over()</span></code></a>
  705. instead, since it will automatically use the newer <code class="docutils literal notranslate"><span class="pre">OVER</span></code> command
  706. if available.</p>
  707. </dd></dl>
  708. </section>
  709. </section>
  710. <section id="utility-functions">
  711. <h2>Utility functions<a class="headerlink" href="#utility-functions" title="Link to this heading">¶</a></h2>
  712. <p>The module also defines the following utility function:</p>
  713. <dl class="py function">
  714. <dt class="sig sig-object py" id="nntplib.decode_header">
  715. <span class="sig-prename descclassname"><span class="pre">nntplib.</span></span><span class="sig-name descname"><span class="pre">decode_header</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">header_str</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#nntplib.decode_header" title="Link to this definition">¶</a></dt>
  716. <dd><p>Decode a header value, un-escaping any escaped non-ASCII characters.
  717. <em>header_str</em> must be a <a class="reference internal" href="stdtypes.html#str" title="str"><code class="xref py py-class docutils literal notranslate"><span class="pre">str</span></code></a> object. The unescaped value is
  718. returned. Using this function is recommended to display some headers
  719. in a human readable form:</p>
  720. <div class="highlight-python3 notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="n">decode_header</span><span class="p">(</span><span class="s2">&quot;Some subject&quot;</span><span class="p">)</span>
  721. <span class="go">&#39;Some subject&#39;</span>
  722. <span class="gp">&gt;&gt;&gt; </span><span class="n">decode_header</span><span class="p">(</span><span class="s2">&quot;=?ISO-8859-15?Q?D=E9buter_en_Python?=&quot;</span><span class="p">)</span>
  723. <span class="go">&#39;Débuter en Python&#39;</span>
  724. <span class="gp">&gt;&gt;&gt; </span><span class="n">decode_header</span><span class="p">(</span><span class="s2">&quot;Re: =?UTF-8?B?cHJvYmzDqG1lIGRlIG1hdHJpY2U=?=&quot;</span><span class="p">)</span>
  725. <span class="go">&#39;Re: problème de matrice&#39;</span>
  726. </pre></div>
  727. </div>
  728. </dd></dl>
  729. </section>
  730. </section>
  731. <div class="clearer"></div>
  732. </div>
  733. </div>
  734. </div>
  735. <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
  736. <div class="sphinxsidebarwrapper">
  737. <div>
  738. <h3><a href="../contents.html">Table of Contents</a></h3>
  739. <ul>
  740. <li><a class="reference internal" href="#"><code class="xref py py-mod docutils literal notranslate"><span class="pre">nntplib</span></code> — NNTP protocol client</a><ul>
  741. <li><a class="reference internal" href="#nntp-objects">NNTP Objects</a><ul>
  742. <li><a class="reference internal" href="#attributes">Attributes</a></li>
  743. <li><a class="reference internal" href="#methods">Methods</a></li>
  744. </ul>
  745. </li>
  746. <li><a class="reference internal" href="#utility-functions">Utility functions</a></li>
  747. </ul>
  748. </li>
  749. </ul>
  750. </div>
  751. <div>
  752. <h4>Previous topic</h4>
  753. <p class="topless"><a href="nis.html"
  754. title="previous chapter"><code class="xref py py-mod docutils literal notranslate"><span class="pre">nis</span></code> — Interface to Sun’s NIS (Yellow Pages)</a></p>
  755. </div>
  756. <div>
  757. <h4>Next topic</h4>
  758. <p class="topless"><a href="optparse.html"
  759. title="next chapter"><code class="xref py py-mod docutils literal notranslate"><span class="pre">optparse</span></code> — Parser for command line options</a></p>
  760. </div>
  761. <div role="note" aria-label="source link">
  762. <h3>This Page</h3>
  763. <ul class="this-page-menu">
  764. <li><a href="../bugs.html">Report a Bug</a></li>
  765. <li>
  766. <a href="https://github.com/python/cpython/blob/main/Doc/library/nntplib.rst"
  767. rel="nofollow">Show Source
  768. </a>
  769. </li>
  770. </ul>
  771. </div>
  772. </div>
  773. <div id="sidebarbutton" title="Collapse sidebar">
  774. <span>«</span>
  775. </div>
  776. </div>
  777. <div class="clearer"></div>
  778. </div>
  779. <div class="related" role="navigation" aria-label="related navigation">
  780. <h3>Navigation</h3>
  781. <ul>
  782. <li class="right" style="margin-right: 10px">
  783. <a href="../genindex.html" title="General Index"
  784. >index</a></li>
  785. <li class="right" >
  786. <a href="../py-modindex.html" title="Python Module Index"
  787. >modules</a> |</li>
  788. <li class="right" >
  789. <a href="optparse.html" title="optparse — Parser for command line options"
  790. >next</a> |</li>
  791. <li class="right" >
  792. <a href="nis.html" title="nis — Interface to Sun’s NIS (Yellow Pages)"
  793. >previous</a> |</li>
  794. <li><img src="../_static/py.svg" alt="Python logo" style="vertical-align: middle; margin-top: -1px"/></li>
  795. <li><a href="https://www.python.org/">Python</a> &#187;</li>
  796. <li class="switchers">
  797. <div class="language_switcher_placeholder"></div>
  798. <div class="version_switcher_placeholder"></div>
  799. </li>
  800. <li>
  801. </li>
  802. <li id="cpython-language-and-version">
  803. <a href="../index.html">3.12.3 Documentation</a> &#187;
  804. </li>
  805. <li class="nav-item nav-item-1"><a href="index.html" >The Python Standard Library</a> &#187;</li>
  806. <li class="nav-item nav-item-2"><a href="superseded.html" >Superseded Modules</a> &#187;</li>
  807. <li class="nav-item nav-item-this"><a href=""><code class="xref py py-mod docutils literal notranslate"><span class="pre">nntplib</span></code> — NNTP protocol client</a></li>
  808. <li class="right">
  809. <div class="inline-search" role="search">
  810. <form class="inline-search" action="../search.html" method="get">
  811. <input placeholder="Quick search" aria-label="Quick search" type="search" name="q" id="search-box" />
  812. <input type="submit" value="Go" />
  813. </form>
  814. </div>
  815. |
  816. </li>
  817. <li class="right">
  818. <label class="theme-selector-label">
  819. Theme
  820. <select class="theme-selector" oninput="activateTheme(this.value)">
  821. <option value="auto" selected>Auto</option>
  822. <option value="light">Light</option>
  823. <option value="dark">Dark</option>
  824. </select>
  825. </label> |</li>
  826. </ul>
  827. </div>
  828. <div class="footer">
  829. &copy;
  830. <a href="../copyright.html">
  831. Copyright
  832. </a>
  833. 2001-2024, Python Software Foundation.
  834. <br />
  835. This page is licensed under the Python Software Foundation License Version 2.
  836. <br />
  837. Examples, recipes, and other code in the documentation are additionally licensed under the Zero Clause BSD License.
  838. <br />
  839. See <a href="/license.html">History and License</a> for more information.<br />
  840. <br />
  841. The Python Software Foundation is a non-profit corporation.
  842. <a href="https://www.python.org/psf/donations/">Please donate.</a>
  843. <br />
  844. <br />
  845. Last updated on Apr 09, 2024 (13:47 UTC).
  846. <a href="/bugs.html">Found a bug</a>?
  847. <br />
  848. Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.
  849. </div>
  850. </body>
  851. </html>
上海开阖软件有限公司 沪ICP备12045867号-1