\!/ KyuuKazami \!/

Path : /usr/share/doc/python34-docs-3.4.3/library/
Upload :
Current File : //usr/share/doc/python34-docs-3.4.3/library/asyncio-stream.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
    <title>18.5.5. Streams (high-level API) &mdash; Python 3.4.3 documentation</title>
    
    <link rel="stylesheet" href="../_static/pydoctheme.css" type="text/css" />
    <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
    
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    '../',
        VERSION:     '3.4.3',
        COLLAPSE_INDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  true
      };
    </script>
    <script type="text/javascript" src="../_static/jquery.js"></script>
    <script type="text/javascript" src="../_static/underscore.js"></script>
    <script type="text/javascript" src="../_static/doctools.js"></script>
    <script type="text/javascript" src="../_static/sidebar.js"></script>
    <link rel="search" type="application/opensearchdescription+xml"
          title="Search within Python 3.4.3 documentation"
          href="../_static/opensearch.xml"/>
    <link rel="author" title="About these documents" href="../about.html" />
    <link rel="copyright" title="Copyright" href="../copyright.html" />
    <link rel="top" title="Python 3.4.3 documentation" href="../index.html" />
    <link rel="up" title="18.5. asyncio – Asynchronous I/O, event loop, coroutines and tasks" href="asyncio.html" />
    <link rel="next" title="18.5.6. Subprocess" href="asyncio-subprocess.html" />
    <link rel="prev" title="18.5.4. Transports and protocols (low-level API)" href="asyncio-protocol.html" />
    <link rel="shortcut icon" type="image/png" href="../_static/py.png" />
    <script type="text/javascript" src="../_static/copybutton.js"></script>
    
    
 

  </head>
  <body>  
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="../genindex.html" title="General Index"
             accesskey="I">index</a></li>
        <li class="right" >
          <a href="../py-modindex.html" title="Python Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="asyncio-subprocess.html" title="18.5.6. Subprocess"
             accesskey="N">next</a> |</li>
        <li class="right" >
          <a href="asyncio-protocol.html" title="18.5.4. Transports and protocols (low-level API)"
             accesskey="P">previous</a> |</li>
        <li><img src="../_static/py.png" alt=""
                 style="vertical-align: middle; margin-top: -1px"/></li>
        <li><a href="https://www.python.org/">Python</a> &raquo;</li>
        <li>
          <a href="../index.html">3.4.3 Documentation</a> &raquo;
        </li>

          <li><a href="index.html" >The Python Standard Library</a> &raquo;</li>
          <li><a href="ipc.html" >18. Interprocess Communication and Networking</a> &raquo;</li>
          <li><a href="asyncio.html" accesskey="U">18.5. <tt class="docutils literal"><span class="pre">asyncio</span></tt> &#8211; Asynchronous I/O, event loop, coroutines and tasks</a> &raquo;</li> 
      </ul>
    </div>    

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body">
            
  <div class="section" id="streams-high-level-api">
<span id="asyncio-streams"></span><h1>18.5.5. Streams (high-level API)<a class="headerlink" href="#streams-high-level-api" title="Permalink to this headline">¶</a></h1>
<div class="section" id="stream-functions">
<h2>18.5.5.1. Stream functions<a class="headerlink" href="#stream-functions" title="Permalink to this headline">¶</a></h2>
<dl class="function">
<dt id="asyncio.open_connection">
<tt class="descclassname">asyncio.</tt><tt class="descname">open_connection</tt><big>(</big><em>host=None</em>, <em>port=None</em>, <em>*</em>, <em>loop=None</em>, <em>limit=None</em>, <em>**kwds</em><big>)</big><a class="headerlink" href="#asyncio.open_connection" title="Permalink to this definition">¶</a></dt>
<dd><p>A wrapper for <a class="reference internal" href="asyncio-eventloop.html#asyncio.BaseEventLoop.create_connection" title="asyncio.BaseEventLoop.create_connection"><tt class="xref py py-meth docutils literal"><span class="pre">create_connection()</span></tt></a> returning a (reader,
writer) pair.</p>
<p>The reader returned is a <a class="reference internal" href="#asyncio.StreamReader" title="asyncio.StreamReader"><tt class="xref py py-class docutils literal"><span class="pre">StreamReader</span></tt></a> instance; the writer is
a <a class="reference internal" href="#asyncio.StreamWriter" title="asyncio.StreamWriter"><tt class="xref py py-class docutils literal"><span class="pre">StreamWriter</span></tt></a> instance.</p>
<p>The arguments are all the usual arguments to
<a class="reference internal" href="asyncio-eventloop.html#asyncio.BaseEventLoop.create_connection" title="asyncio.BaseEventLoop.create_connection"><tt class="xref py py-meth docutils literal"><span class="pre">BaseEventLoop.create_connection()</span></tt></a> except <em>protocol_factory</em>; most
common are positional host and port, with various optional keyword arguments
following.</p>
<p>Additional optional keyword arguments are <em>loop</em> (to set the event loop
instance to use) and <em>limit</em> (to set the buffer limit passed to the
<a class="reference internal" href="#asyncio.StreamReader" title="asyncio.StreamReader"><tt class="xref py py-class docutils literal"><span class="pre">StreamReader</span></tt></a>).</p>
<p>(If you want to customize the <a class="reference internal" href="#asyncio.StreamReader" title="asyncio.StreamReader"><tt class="xref py py-class docutils literal"><span class="pre">StreamReader</span></tt></a> and/or
<a class="reference internal" href="#asyncio.StreamReaderProtocol" title="asyncio.StreamReaderProtocol"><tt class="xref py py-class docutils literal"><span class="pre">StreamReaderProtocol</span></tt></a> classes, just copy the code &#8211; there&#8217;s really
nothing special here except some convenience.)</p>
<p>This function is a <a class="reference internal" href="asyncio-task.html#coroutine"><em>coroutine</em></a>.</p>
</dd></dl>

<dl class="function">
<dt id="asyncio.start_server">
<tt class="descclassname">asyncio.</tt><tt class="descname">start_server</tt><big>(</big><em>client_connected_cb</em>, <em>host=None</em>, <em>port=None</em>, <em>*</em>, <em>loop=None</em>, <em>limit=None</em>, <em>**kwds</em><big>)</big><a class="headerlink" href="#asyncio.start_server" title="Permalink to this definition">¶</a></dt>
<dd><p>Start a socket server, with a callback for each client connected. The return
value is the same as <a class="reference internal" href="asyncio-eventloop.html#asyncio.BaseEventLoop.create_server" title="asyncio.BaseEventLoop.create_server"><tt class="xref py py-meth docutils literal"><span class="pre">create_server()</span></tt></a>.</p>
<p>The <em>client_connected_cb</em> parameter is called with two parameters:
<em>client_reader</em>, <em>client_writer</em>.  <em>client_reader</em> is a
<a class="reference internal" href="#asyncio.StreamReader" title="asyncio.StreamReader"><tt class="xref py py-class docutils literal"><span class="pre">StreamReader</span></tt></a> object, while <em>client_writer</em> is a
<a class="reference internal" href="#asyncio.StreamWriter" title="asyncio.StreamWriter"><tt class="xref py py-class docutils literal"><span class="pre">StreamWriter</span></tt></a> object.  The <em>client_connected_cb</em> parameter can
either be a plain callback function or a <a class="reference internal" href="asyncio-task.html#coroutine"><em>coroutine function</em></a>; if it is a coroutine function, it will be automatically
converted into a <a class="reference internal" href="asyncio-task.html#asyncio.Task" title="asyncio.Task"><tt class="xref py py-class docutils literal"><span class="pre">Task</span></tt></a>.</p>
<p>The rest of the arguments are all the usual arguments to
<a class="reference internal" href="asyncio-eventloop.html#asyncio.BaseEventLoop.create_server" title="asyncio.BaseEventLoop.create_server"><tt class="xref py py-meth docutils literal"><span class="pre">create_server()</span></tt></a> except <em>protocol_factory</em>; most
common are positional <em>host</em> and <em>port</em>, with various optional keyword
arguments following.</p>
<p>Additional optional keyword arguments are <em>loop</em> (to set the event loop
instance to use) and <em>limit</em> (to set the buffer limit passed to the
<a class="reference internal" href="#asyncio.StreamReader" title="asyncio.StreamReader"><tt class="xref py py-class docutils literal"><span class="pre">StreamReader</span></tt></a>).</p>
<p>This function is a <a class="reference internal" href="asyncio-task.html#coroutine"><em>coroutine</em></a>.</p>
</dd></dl>

<dl class="function">
<dt id="asyncio.open_unix_connection">
<tt class="descclassname">asyncio.</tt><tt class="descname">open_unix_connection</tt><big>(</big><em>path=None</em>, <em>*</em>, <em>loop=None</em>, <em>limit=None</em>, <em>**kwds</em><big>)</big><a class="headerlink" href="#asyncio.open_unix_connection" title="Permalink to this definition">¶</a></dt>
<dd><p>A wrapper for <a class="reference internal" href="asyncio-eventloop.html#asyncio.BaseEventLoop.create_unix_connection" title="asyncio.BaseEventLoop.create_unix_connection"><tt class="xref py py-meth docutils literal"><span class="pre">create_unix_connection()</span></tt></a> returning
a (reader, writer) pair.</p>
<p>See <a class="reference internal" href="#asyncio.open_connection" title="asyncio.open_connection"><tt class="xref py py-func docutils literal"><span class="pre">open_connection()</span></tt></a> for information about return value and other
details.</p>
<p>This function is a <a class="reference internal" href="asyncio-task.html#coroutine"><em>coroutine</em></a>.</p>
<p>Availability: UNIX.</p>
</dd></dl>

<dl class="function">
<dt id="asyncio.start_unix_server">
<tt class="descclassname">asyncio.</tt><tt class="descname">start_unix_server</tt><big>(</big><em>client_connected_cb</em>, <em>path=None</em>, <em>*</em>, <em>loop=None</em>, <em>limit=None</em>, <em>**kwds</em><big>)</big><a class="headerlink" href="#asyncio.start_unix_server" title="Permalink to this definition">¶</a></dt>
<dd><p>Start a UNIX Domain Socket server, with a callback for each client connected.</p>
<p>See <a class="reference internal" href="#asyncio.start_server" title="asyncio.start_server"><tt class="xref py py-func docutils literal"><span class="pre">start_server()</span></tt></a> for information about return value and other
details.</p>
<p>This function is a <a class="reference internal" href="asyncio-task.html#coroutine"><em>coroutine</em></a>.</p>
<p>Availability: UNIX.</p>
</dd></dl>

</div>
<div class="section" id="streamreader">
<h2>18.5.5.2. StreamReader<a class="headerlink" href="#streamreader" title="Permalink to this headline">¶</a></h2>
<dl class="class">
<dt id="asyncio.StreamReader">
<em class="property">class </em><tt class="descclassname">asyncio.</tt><tt class="descname">StreamReader</tt><big>(</big><em>limit=None</em>, <em>loop=None</em><big>)</big><a class="headerlink" href="#asyncio.StreamReader" title="Permalink to this definition">¶</a></dt>
<dd><dl class="method">
<dt id="asyncio.StreamReader.exception">
<tt class="descname">exception</tt><big>(</big><big>)</big><a class="headerlink" href="#asyncio.StreamReader.exception" title="Permalink to this definition">¶</a></dt>
<dd><p>Get the exception.</p>
</dd></dl>

<dl class="method">
<dt id="asyncio.StreamReader.feed_eof">
<tt class="descname">feed_eof</tt><big>(</big><big>)</big><a class="headerlink" href="#asyncio.StreamReader.feed_eof" title="Permalink to this definition">¶</a></dt>
<dd><p>Acknowledge the EOF.</p>
</dd></dl>

<dl class="method">
<dt id="asyncio.StreamReader.feed_data">
<tt class="descname">feed_data</tt><big>(</big><em>data</em><big>)</big><a class="headerlink" href="#asyncio.StreamReader.feed_data" title="Permalink to this definition">¶</a></dt>
<dd><p>Feed <em>data</em> bytes in the internal buffer.  Any operations waiting
for the data will be resumed.</p>
</dd></dl>

<dl class="method">
<dt id="asyncio.StreamReader.set_exception">
<tt class="descname">set_exception</tt><big>(</big><em>exc</em><big>)</big><a class="headerlink" href="#asyncio.StreamReader.set_exception" title="Permalink to this definition">¶</a></dt>
<dd><p>Set the exception.</p>
</dd></dl>

<dl class="method">
<dt id="asyncio.StreamReader.set_transport">
<tt class="descname">set_transport</tt><big>(</big><em>transport</em><big>)</big><a class="headerlink" href="#asyncio.StreamReader.set_transport" title="Permalink to this definition">¶</a></dt>
<dd><p>Set the transport.</p>
</dd></dl>

<dl class="method">
<dt id="asyncio.StreamReader.read">
<tt class="descname">read</tt><big>(</big><em>n=-1</em><big>)</big><a class="headerlink" href="#asyncio.StreamReader.read" title="Permalink to this definition">¶</a></dt>
<dd><p>Read up to <em>n</em> bytes.  If <em>n</em> is not provided, or set to <tt class="docutils literal"><span class="pre">-1</span></tt>,
read until EOF and return all read bytes.</p>
<p>If the EOF was received and the internal buffer is empty,
return an empty <tt class="docutils literal"><span class="pre">bytes</span></tt> object.</p>
<p>This method is a <a class="reference internal" href="asyncio-task.html#coroutine"><em>coroutine</em></a>.</p>
</dd></dl>

<dl class="method">
<dt id="asyncio.StreamReader.readline">
<tt class="descname">readline</tt><big>(</big><big>)</big><a class="headerlink" href="#asyncio.StreamReader.readline" title="Permalink to this definition">¶</a></dt>
<dd><p>Read one line, where &#8220;line&#8221; is a sequence of bytes ending with <tt class="docutils literal"><span class="pre">\n</span></tt>.</p>
<p>If EOF is received, and <tt class="docutils literal"><span class="pre">\n</span></tt> was not found, the method will
return the partial read bytes.</p>
<p>If the EOF was received and the internal buffer is empty,
return an empty <tt class="docutils literal"><span class="pre">bytes</span></tt> object.</p>
<p>This method is a <a class="reference internal" href="asyncio-task.html#coroutine"><em>coroutine</em></a>.</p>
</dd></dl>

<dl class="method">
<dt id="asyncio.StreamReader.readexactly">
<tt class="descname">readexactly</tt><big>(</big><em>n</em><big>)</big><a class="headerlink" href="#asyncio.StreamReader.readexactly" title="Permalink to this definition">¶</a></dt>
<dd><p>Read exactly <em>n</em> bytes. Raise an <a class="reference internal" href="#asyncio.IncompleteReadError" title="asyncio.IncompleteReadError"><tt class="xref py py-exc docutils literal"><span class="pre">IncompleteReadError</span></tt></a> if the end of
the stream is reached before <em>n</em> can be read, the
<a class="reference internal" href="#asyncio.IncompleteReadError.partial" title="asyncio.IncompleteReadError.partial"><tt class="xref py py-attr docutils literal"><span class="pre">IncompleteReadError.partial</span></tt></a> attribute of the exception contains
the partial read bytes.</p>
<p>This method is a <a class="reference internal" href="asyncio-task.html#coroutine"><em>coroutine</em></a>.</p>
</dd></dl>

<dl class="method">
<dt id="asyncio.StreamReader.at_eof">
<tt class="descname">at_eof</tt><big>(</big><big>)</big><a class="headerlink" href="#asyncio.StreamReader.at_eof" title="Permalink to this definition">¶</a></dt>
<dd><p>Return <tt class="docutils literal"><span class="pre">True</span></tt> if the buffer is empty and <a class="reference internal" href="#asyncio.StreamReader.feed_eof" title="asyncio.StreamReader.feed_eof"><tt class="xref py py-meth docutils literal"><span class="pre">feed_eof()</span></tt></a> was called.</p>
</dd></dl>

</dd></dl>

</div>
<div class="section" id="streamwriter">
<h2>18.5.5.3. StreamWriter<a class="headerlink" href="#streamwriter" title="Permalink to this headline">¶</a></h2>
<dl class="class">
<dt id="asyncio.StreamWriter">
<em class="property">class </em><tt class="descclassname">asyncio.</tt><tt class="descname">StreamWriter</tt><big>(</big><em>transport</em>, <em>protocol</em>, <em>reader</em>, <em>loop</em><big>)</big><a class="headerlink" href="#asyncio.StreamWriter" title="Permalink to this definition">¶</a></dt>
<dd><p>Wraps a Transport.</p>
<p>This exposes <a class="reference internal" href="#asyncio.StreamWriter.write" title="asyncio.StreamWriter.write"><tt class="xref py py-meth docutils literal"><span class="pre">write()</span></tt></a>, <a class="reference internal" href="#asyncio.StreamWriter.writelines" title="asyncio.StreamWriter.writelines"><tt class="xref py py-meth docutils literal"><span class="pre">writelines()</span></tt></a>, <a class="reference internal" href="#asyncio.StreamWriter.can_write_eof" title="asyncio.StreamWriter.can_write_eof"><tt class="xref py py-meth docutils literal"><span class="pre">can_write_eof()</span></tt></a>,
<a class="reference internal" href="#asyncio.StreamWriter.write_eof" title="asyncio.StreamWriter.write_eof"><tt class="xref py py-meth docutils literal"><span class="pre">write_eof()</span></tt></a>, <a class="reference internal" href="#asyncio.StreamWriter.get_extra_info" title="asyncio.StreamWriter.get_extra_info"><tt class="xref py py-meth docutils literal"><span class="pre">get_extra_info()</span></tt></a> and <a class="reference internal" href="#asyncio.StreamWriter.close" title="asyncio.StreamWriter.close"><tt class="xref py py-meth docutils literal"><span class="pre">close()</span></tt></a>.  It adds
<a class="reference internal" href="#asyncio.StreamWriter.drain" title="asyncio.StreamWriter.drain"><tt class="xref py py-meth docutils literal"><span class="pre">drain()</span></tt></a> which returns an optional <a class="reference internal" href="asyncio-task.html#asyncio.Future" title="asyncio.Future"><tt class="xref py py-class docutils literal"><span class="pre">Future</span></tt></a> on which you can
wait for flow control.  It also adds a transport attribute which references
the <tt class="xref py py-class docutils literal"><span class="pre">Transport</span></tt> directly.</p>
<dl class="attribute">
<dt id="asyncio.StreamWriter.transport">
<tt class="descname">transport</tt><a class="headerlink" href="#asyncio.StreamWriter.transport" title="Permalink to this definition">¶</a></dt>
<dd><p>Transport.</p>
</dd></dl>

<dl class="method">
<dt id="asyncio.StreamWriter.can_write_eof">
<tt class="descname">can_write_eof</tt><big>(</big><big>)</big><a class="headerlink" href="#asyncio.StreamWriter.can_write_eof" title="Permalink to this definition">¶</a></dt>
<dd><p>Return <a class="reference internal" href="constants.html#True" title="True"><tt class="xref py py-const docutils literal"><span class="pre">True</span></tt></a> if the transport supports <a class="reference internal" href="#asyncio.StreamWriter.write_eof" title="asyncio.StreamWriter.write_eof"><tt class="xref py py-meth docutils literal"><span class="pre">write_eof()</span></tt></a>,
<a class="reference internal" href="constants.html#False" title="False"><tt class="xref py py-const docutils literal"><span class="pre">False</span></tt></a> if not. See <a class="reference internal" href="asyncio-protocol.html#asyncio.WriteTransport.can_write_eof" title="asyncio.WriteTransport.can_write_eof"><tt class="xref py py-meth docutils literal"><span class="pre">WriteTransport.can_write_eof()</span></tt></a>.</p>
</dd></dl>

<dl class="method">
<dt id="asyncio.StreamWriter.close">
<tt class="descname">close</tt><big>(</big><big>)</big><a class="headerlink" href="#asyncio.StreamWriter.close" title="Permalink to this definition">¶</a></dt>
<dd><p>Close the transport: see <a class="reference internal" href="asyncio-protocol.html#asyncio.BaseTransport.close" title="asyncio.BaseTransport.close"><tt class="xref py py-meth docutils literal"><span class="pre">BaseTransport.close()</span></tt></a>.</p>
</dd></dl>

<dl class="method">
<dt id="asyncio.StreamWriter.drain">
<tt class="descname">drain</tt><big>(</big><big>)</big><a class="headerlink" href="#asyncio.StreamWriter.drain" title="Permalink to this definition">¶</a></dt>
<dd><p>Let the write buffer of the underlying transport a chance to be flushed.</p>
<p>The intended use is to write:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="n">w</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="n">data</span><span class="p">)</span>
<span class="k">yield from</span> <span class="n">w</span><span class="o">.</span><span class="n">drain</span><span class="p">()</span>
</pre></div>
</div>
<p>When the size of the transport buffer reaches the high-water limit (the
protocol is paused), block until the size of the buffer is drained down
to the low-water limit and the protocol is resumed. When there is nothing
to wait for, the yield-from continues immediately.</p>
<p>Yielding from <a class="reference internal" href="#asyncio.StreamWriter.drain" title="asyncio.StreamWriter.drain"><tt class="xref py py-meth docutils literal"><span class="pre">drain()</span></tt></a> gives the opportunity for the loop to
schedule the write operation and flush the buffer. It should especially
be used when a possibly large amount of data is written to the transport,
and the coroutine does not yield-from between calls to <a class="reference internal" href="#asyncio.StreamWriter.write" title="asyncio.StreamWriter.write"><tt class="xref py py-meth docutils literal"><span class="pre">write()</span></tt></a>.</p>
<p>This method is a <a class="reference internal" href="asyncio-task.html#coroutine"><em>coroutine</em></a>.</p>
</dd></dl>

<dl class="method">
<dt id="asyncio.StreamWriter.get_extra_info">
<tt class="descname">get_extra_info</tt><big>(</big><em>name</em>, <em>default=None</em><big>)</big><a class="headerlink" href="#asyncio.StreamWriter.get_extra_info" title="Permalink to this definition">¶</a></dt>
<dd><p>Return optional transport information: see
<a class="reference internal" href="asyncio-protocol.html#asyncio.BaseTransport.get_extra_info" title="asyncio.BaseTransport.get_extra_info"><tt class="xref py py-meth docutils literal"><span class="pre">BaseTransport.get_extra_info()</span></tt></a>.</p>
</dd></dl>

<dl class="method">
<dt id="asyncio.StreamWriter.write">
<tt class="descname">write</tt><big>(</big><em>data</em><big>)</big><a class="headerlink" href="#asyncio.StreamWriter.write" title="Permalink to this definition">¶</a></dt>
<dd><p>Write some <em>data</em> bytes to the transport: see
<a class="reference internal" href="asyncio-protocol.html#asyncio.WriteTransport.write" title="asyncio.WriteTransport.write"><tt class="xref py py-meth docutils literal"><span class="pre">WriteTransport.write()</span></tt></a>.</p>
</dd></dl>

<dl class="method">
<dt id="asyncio.StreamWriter.writelines">
<tt class="descname">writelines</tt><big>(</big><em>data</em><big>)</big><a class="headerlink" href="#asyncio.StreamWriter.writelines" title="Permalink to this definition">¶</a></dt>
<dd><p>Write a list (or any iterable) of data bytes to the transport:
see <a class="reference internal" href="asyncio-protocol.html#asyncio.WriteTransport.writelines" title="asyncio.WriteTransport.writelines"><tt class="xref py py-meth docutils literal"><span class="pre">WriteTransport.writelines()</span></tt></a>.</p>
</dd></dl>

<dl class="method">
<dt id="asyncio.StreamWriter.write_eof">
<tt class="descname">write_eof</tt><big>(</big><big>)</big><a class="headerlink" href="#asyncio.StreamWriter.write_eof" title="Permalink to this definition">¶</a></dt>
<dd><p>Close the write end of the transport after flushing buffered data:
see <a class="reference internal" href="asyncio-protocol.html#asyncio.WriteTransport.write_eof" title="asyncio.WriteTransport.write_eof"><tt class="xref py py-meth docutils literal"><span class="pre">WriteTransport.write_eof()</span></tt></a>.</p>
</dd></dl>

</dd></dl>

</div>
<div class="section" id="streamreaderprotocol">
<h2>18.5.5.4. StreamReaderProtocol<a class="headerlink" href="#streamreaderprotocol" title="Permalink to this headline">¶</a></h2>
<dl class="class">
<dt id="asyncio.StreamReaderProtocol">
<em class="property">class </em><tt class="descclassname">asyncio.</tt><tt class="descname">StreamReaderProtocol</tt><big>(</big><em>stream_reader</em>, <em>client_connected_cb=None</em>, <em>loop=None</em><big>)</big><a class="headerlink" href="#asyncio.StreamReaderProtocol" title="Permalink to this definition">¶</a></dt>
<dd><p>Trivial helper class to adapt between <a class="reference internal" href="asyncio-protocol.html#asyncio.Protocol" title="asyncio.Protocol"><tt class="xref py py-class docutils literal"><span class="pre">Protocol</span></tt></a> and
<a class="reference internal" href="#asyncio.StreamReader" title="asyncio.StreamReader"><tt class="xref py py-class docutils literal"><span class="pre">StreamReader</span></tt></a>. Sublclass of <a class="reference internal" href="asyncio-protocol.html#asyncio.Protocol" title="asyncio.Protocol"><tt class="xref py py-class docutils literal"><span class="pre">Protocol</span></tt></a>.</p>
<p><em>stream_reader</em> is a <a class="reference internal" href="#asyncio.StreamReader" title="asyncio.StreamReader"><tt class="xref py py-class docutils literal"><span class="pre">StreamReader</span></tt></a> instance, <em>client_connected_cb</em>
is an optional function called with (stream_reader, stream_writer) when a
connection is made, <em>loop</em> is the event loop instance to use.</p>
<p>(This is a helper class instead of making <a class="reference internal" href="#asyncio.StreamReader" title="asyncio.StreamReader"><tt class="xref py py-class docutils literal"><span class="pre">StreamReader</span></tt></a> itself a
<a class="reference internal" href="asyncio-protocol.html#asyncio.Protocol" title="asyncio.Protocol"><tt class="xref py py-class docutils literal"><span class="pre">Protocol</span></tt></a> subclass, because the <a class="reference internal" href="#asyncio.StreamReader" title="asyncio.StreamReader"><tt class="xref py py-class docutils literal"><span class="pre">StreamReader</span></tt></a> has other
potential uses, and to prevent the user of the <a class="reference internal" href="#asyncio.StreamReader" title="asyncio.StreamReader"><tt class="xref py py-class docutils literal"><span class="pre">StreamReader</span></tt></a> to
accidentally call inappropriate methods of the protocol.)</p>
</dd></dl>

</div>
<div class="section" id="incompletereaderror">
<h2>18.5.5.5. IncompleteReadError<a class="headerlink" href="#incompletereaderror" title="Permalink to this headline">¶</a></h2>
<dl class="exception">
<dt id="asyncio.IncompleteReadError">
<em class="property">exception </em><tt class="descclassname">asyncio.</tt><tt class="descname">IncompleteReadError</tt><a class="headerlink" href="#asyncio.IncompleteReadError" title="Permalink to this definition">¶</a></dt>
<dd><blockquote>
<div>Incomplete read error, subclass of <a class="reference internal" href="exceptions.html#EOFError" title="EOFError"><tt class="xref py py-exc docutils literal"><span class="pre">EOFError</span></tt></a>.</div></blockquote>
<dl class="attribute">
<dt id="asyncio.IncompleteReadError.expected">
<tt class="descname">expected</tt><a class="headerlink" href="#asyncio.IncompleteReadError.expected" title="Permalink to this definition">¶</a></dt>
<dd><p>Total number of expected bytes (<a class="reference internal" href="functions.html#int" title="int"><tt class="xref py py-class docutils literal"><span class="pre">int</span></tt></a>).</p>
</dd></dl>

<dl class="attribute">
<dt id="asyncio.IncompleteReadError.partial">
<tt class="descname">partial</tt><a class="headerlink" href="#asyncio.IncompleteReadError.partial" title="Permalink to this definition">¶</a></dt>
<dd><p>Read bytes string before the end of stream was reached (<a class="reference internal" href="functions.html#bytes" title="bytes"><tt class="xref py py-class docutils literal"><span class="pre">bytes</span></tt></a>).</p>
</dd></dl>

</dd></dl>

</div>
<div class="section" id="stream-examples">
<h2>18.5.5.6. Stream examples<a class="headerlink" href="#stream-examples" title="Permalink to this headline">¶</a></h2>
<div class="section" id="tcp-echo-client-using-streams">
<span id="asyncio-tcp-echo-client-streams"></span><h3>18.5.5.6.1. TCP echo client using streams<a class="headerlink" href="#tcp-echo-client-using-streams" title="Permalink to this headline">¶</a></h3>
<p>TCP echo client using the <a class="reference internal" href="#asyncio.open_connection" title="asyncio.open_connection"><tt class="xref py py-func docutils literal"><span class="pre">asyncio.open_connection()</span></tt></a> function:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="kn">import</span> <span class="nn">asyncio</span>

<span class="nd">@asyncio</span><span class="o">.</span><span class="n">coroutine</span>
<span class="k">def</span> <span class="nf">tcp_echo_client</span><span class="p">(</span><span class="n">message</span><span class="p">,</span> <span class="n">loop</span><span class="p">):</span>
    <span class="n">reader</span><span class="p">,</span> <span class="n">writer</span> <span class="o">=</span> <span class="k">yield from</span> <span class="n">asyncio</span><span class="o">.</span><span class="n">open_connection</span><span class="p">(</span><span class="s">&#39;127.0.0.1&#39;</span><span class="p">,</span> <span class="mi">8888</span><span class="p">,</span>
                                                        <span class="n">loop</span><span class="o">=</span><span class="n">loop</span><span class="p">)</span>

    <span class="nb">print</span><span class="p">(</span><span class="s">&#39;Send: %r&#39;</span> <span class="o">%</span> <span class="n">message</span><span class="p">)</span>
    <span class="n">writer</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="n">message</span><span class="o">.</span><span class="n">encode</span><span class="p">())</span>

    <span class="n">data</span> <span class="o">=</span> <span class="k">yield from</span> <span class="n">reader</span><span class="o">.</span><span class="n">read</span><span class="p">(</span><span class="mi">100</span><span class="p">)</span>
    <span class="nb">print</span><span class="p">(</span><span class="s">&#39;Received: %r&#39;</span> <span class="o">%</span> <span class="n">data</span><span class="o">.</span><span class="n">decode</span><span class="p">())</span>

    <span class="nb">print</span><span class="p">(</span><span class="s">&#39;Close the socket&#39;</span><span class="p">)</span>
    <span class="n">writer</span><span class="o">.</span><span class="n">close</span><span class="p">()</span>

<span class="n">message</span> <span class="o">=</span> <span class="s">&#39;Hello World!&#39;</span>
<span class="n">loop</span> <span class="o">=</span> <span class="n">asyncio</span><span class="o">.</span><span class="n">get_event_loop</span><span class="p">()</span>
<span class="n">loop</span><span class="o">.</span><span class="n">run_until_complete</span><span class="p">(</span><span class="n">tcp_echo_client</span><span class="p">(</span><span class="n">message</span><span class="p">,</span> <span class="n">loop</span><span class="p">))</span>
<span class="n">loop</span><span class="o">.</span><span class="n">close</span><span class="p">()</span>
</pre></div>
</div>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last">The <a class="reference internal" href="asyncio-protocol.html#asyncio-tcp-echo-client-protocol"><em>TCP echo client protocol</em></a>
example uses the <a class="reference internal" href="asyncio-eventloop.html#asyncio.BaseEventLoop.create_connection" title="asyncio.BaseEventLoop.create_connection"><tt class="xref py py-meth docutils literal"><span class="pre">BaseEventLoop.create_connection()</span></tt></a> method.</p>
</div>
</div>
<div class="section" id="tcp-echo-server-using-streams">
<span id="asyncio-tcp-echo-server-streams"></span><h3>18.5.5.6.2. TCP echo server using streams<a class="headerlink" href="#tcp-echo-server-using-streams" title="Permalink to this headline">¶</a></h3>
<p>TCP echo server using the <a class="reference internal" href="#asyncio.start_server" title="asyncio.start_server"><tt class="xref py py-func docutils literal"><span class="pre">asyncio.start_server()</span></tt></a> function:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="kn">import</span> <span class="nn">asyncio</span>

<span class="nd">@asyncio</span><span class="o">.</span><span class="n">coroutine</span>
<span class="k">def</span> <span class="nf">handle_echo</span><span class="p">(</span><span class="n">reader</span><span class="p">,</span> <span class="n">writer</span><span class="p">):</span>
    <span class="n">data</span> <span class="o">=</span> <span class="k">yield from</span> <span class="n">reader</span><span class="o">.</span><span class="n">read</span><span class="p">(</span><span class="mi">100</span><span class="p">)</span>
    <span class="n">message</span> <span class="o">=</span> <span class="n">data</span><span class="o">.</span><span class="n">decode</span><span class="p">()</span>
    <span class="n">addr</span> <span class="o">=</span> <span class="n">writer</span><span class="o">.</span><span class="n">get_extra_info</span><span class="p">(</span><span class="s">&#39;peername&#39;</span><span class="p">)</span>
    <span class="nb">print</span><span class="p">(</span><span class="s">&quot;Received %r from %r&quot;</span> <span class="o">%</span> <span class="p">(</span><span class="n">message</span><span class="p">,</span> <span class="n">addr</span><span class="p">))</span>

    <span class="nb">print</span><span class="p">(</span><span class="s">&quot;Send: %r&quot;</span> <span class="o">%</span> <span class="n">message</span><span class="p">)</span>
    <span class="n">writer</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="n">data</span><span class="p">)</span>
    <span class="k">yield from</span> <span class="n">writer</span><span class="o">.</span><span class="n">drain</span><span class="p">()</span>

    <span class="nb">print</span><span class="p">(</span><span class="s">&quot;Close the client socket&quot;</span><span class="p">)</span>
    <span class="n">writer</span><span class="o">.</span><span class="n">close</span><span class="p">()</span>

<span class="n">loop</span> <span class="o">=</span> <span class="n">asyncio</span><span class="o">.</span><span class="n">get_event_loop</span><span class="p">()</span>
<span class="n">coro</span> <span class="o">=</span> <span class="n">asyncio</span><span class="o">.</span><span class="n">start_server</span><span class="p">(</span><span class="n">handle_echo</span><span class="p">,</span> <span class="s">&#39;127.0.0.1&#39;</span><span class="p">,</span> <span class="mi">8888</span><span class="p">,</span> <span class="n">loop</span><span class="o">=</span><span class="n">loop</span><span class="p">)</span>
<span class="n">server</span> <span class="o">=</span> <span class="n">loop</span><span class="o">.</span><span class="n">run_until_complete</span><span class="p">(</span><span class="n">coro</span><span class="p">)</span>

<span class="c"># Serve requests until CTRL+c is pressed</span>
<span class="nb">print</span><span class="p">(</span><span class="s">&#39;Serving on {}&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">server</span><span class="o">.</span><span class="n">sockets</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span><span class="o">.</span><span class="n">getsockname</span><span class="p">()))</span>
<span class="k">try</span><span class="p">:</span>
    <span class="n">loop</span><span class="o">.</span><span class="n">run_forever</span><span class="p">()</span>
<span class="k">except</span> <span class="ne">KeyboardInterrupt</span><span class="p">:</span>
    <span class="k">pass</span>

<span class="c"># Close the server</span>
<span class="n">server</span><span class="o">.</span><span class="n">close</span><span class="p">()</span>
<span class="n">loop</span><span class="o">.</span><span class="n">run_until_complete</span><span class="p">(</span><span class="n">server</span><span class="o">.</span><span class="n">wait_closed</span><span class="p">())</span>
<span class="n">loop</span><span class="o">.</span><span class="n">close</span><span class="p">()</span>
</pre></div>
</div>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last">The <a class="reference internal" href="asyncio-protocol.html#asyncio-tcp-echo-server-protocol"><em>TCP echo server protocol</em></a>
example uses the <a class="reference internal" href="asyncio-eventloop.html#asyncio.BaseEventLoop.create_server" title="asyncio.BaseEventLoop.create_server"><tt class="xref py py-meth docutils literal"><span class="pre">BaseEventLoop.create_server()</span></tt></a> method.</p>
</div>
</div>
<div class="section" id="get-http-headers">
<h3>18.5.5.6.3. Get HTTP headers<a class="headerlink" href="#get-http-headers" title="Permalink to this headline">¶</a></h3>
<p>Simple example querying HTTP headers of the URL passed on the command line:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="kn">import</span> <span class="nn">asyncio</span>
<span class="kn">import</span> <span class="nn">urllib.parse</span>
<span class="kn">import</span> <span class="nn">sys</span>

<span class="nd">@asyncio</span><span class="o">.</span><span class="n">coroutine</span>
<span class="k">def</span> <span class="nf">print_http_headers</span><span class="p">(</span><span class="n">url</span><span class="p">):</span>
    <span class="n">url</span> <span class="o">=</span> <span class="n">urllib</span><span class="o">.</span><span class="n">parse</span><span class="o">.</span><span class="n">urlsplit</span><span class="p">(</span><span class="n">url</span><span class="p">)</span>
    <span class="k">if</span> <span class="n">url</span><span class="o">.</span><span class="n">scheme</span> <span class="o">==</span> <span class="s">&#39;https&#39;</span><span class="p">:</span>
        <span class="n">connect</span> <span class="o">=</span> <span class="n">asyncio</span><span class="o">.</span><span class="n">open_connection</span><span class="p">(</span><span class="n">url</span><span class="o">.</span><span class="n">hostname</span><span class="p">,</span> <span class="mi">443</span><span class="p">,</span> <span class="n">ssl</span><span class="o">=</span><span class="k">True</span><span class="p">)</span>
    <span class="k">else</span><span class="p">:</span>
        <span class="n">connect</span> <span class="o">=</span> <span class="n">asyncio</span><span class="o">.</span><span class="n">open_connection</span><span class="p">(</span><span class="n">url</span><span class="o">.</span><span class="n">hostname</span><span class="p">,</span> <span class="mi">80</span><span class="p">)</span>
    <span class="n">reader</span><span class="p">,</span> <span class="n">writer</span> <span class="o">=</span> <span class="k">yield from</span> <span class="n">connect</span>
    <span class="n">query</span> <span class="o">=</span> <span class="p">(</span><span class="s">&#39;HEAD {path} HTTP/1.0</span><span class="se">\r\n</span><span class="s">&#39;</span>
             <span class="s">&#39;Host: {hostname}</span><span class="se">\r\n</span><span class="s">&#39;</span>
             <span class="s">&#39;</span><span class="se">\r\n</span><span class="s">&#39;</span><span class="p">)</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">path</span><span class="o">=</span><span class="n">url</span><span class="o">.</span><span class="n">path</span> <span class="ow">or</span> <span class="s">&#39;/&#39;</span><span class="p">,</span> <span class="n">hostname</span><span class="o">=</span><span class="n">url</span><span class="o">.</span><span class="n">hostname</span><span class="p">)</span>
    <span class="n">writer</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="n">query</span><span class="o">.</span><span class="n">encode</span><span class="p">(</span><span class="s">&#39;latin-1&#39;</span><span class="p">))</span>
    <span class="k">while</span> <span class="k">True</span><span class="p">:</span>
        <span class="n">line</span> <span class="o">=</span> <span class="k">yield from</span> <span class="n">reader</span><span class="o">.</span><span class="n">readline</span><span class="p">()</span>
        <span class="k">if</span> <span class="ow">not</span> <span class="n">line</span><span class="p">:</span>
            <span class="k">break</span>
        <span class="n">line</span> <span class="o">=</span> <span class="n">line</span><span class="o">.</span><span class="n">decode</span><span class="p">(</span><span class="s">&#39;latin1&#39;</span><span class="p">)</span><span class="o">.</span><span class="n">rstrip</span><span class="p">()</span>
        <span class="k">if</span> <span class="n">line</span><span class="p">:</span>
            <span class="nb">print</span><span class="p">(</span><span class="s">&#39;HTTP header&gt; %s&#39;</span> <span class="o">%</span> <span class="n">line</span><span class="p">)</span>

    <span class="c"># Ignore the body, close the socket</span>
    <span class="n">writer</span><span class="o">.</span><span class="n">close</span><span class="p">()</span>

<span class="n">url</span> <span class="o">=</span> <span class="n">sys</span><span class="o">.</span><span class="n">argv</span><span class="p">[</span><span class="mi">1</span><span class="p">]</span>
<span class="n">loop</span> <span class="o">=</span> <span class="n">asyncio</span><span class="o">.</span><span class="n">get_event_loop</span><span class="p">()</span>
<span class="n">task</span> <span class="o">=</span> <span class="n">asyncio</span><span class="o">.</span><span class="n">async</span><span class="p">(</span><span class="n">print_http_headers</span><span class="p">(</span><span class="n">url</span><span class="p">))</span>
<span class="n">loop</span><span class="o">.</span><span class="n">run_until_complete</span><span class="p">(</span><span class="n">task</span><span class="p">)</span>
<span class="n">loop</span><span class="o">.</span><span class="n">close</span><span class="p">()</span>
</pre></div>
</div>
<p>Usage:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="n">python</span> <span class="n">example</span><span class="o">.</span><span class="n">py</span> <span class="n">http</span><span class="p">:</span><span class="o">//</span><span class="n">example</span><span class="o">.</span><span class="n">com</span><span class="o">/</span><span class="n">path</span><span class="o">/</span><span class="n">page</span><span class="o">.</span><span class="n">html</span>
</pre></div>
</div>
<p>or with HTTPS:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="n">python</span> <span class="n">example</span><span class="o">.</span><span class="n">py</span> <span class="n">https</span><span class="p">:</span><span class="o">//</span><span class="n">example</span><span class="o">.</span><span class="n">com</span><span class="o">/</span><span class="n">path</span><span class="o">/</span><span class="n">page</span><span class="o">.</span><span class="n">html</span>
</pre></div>
</div>
</div>
<div class="section" id="register-an-open-socket-to-wait-for-data-using-streams">
<span id="asyncio-register-socket-streams"></span><h3>18.5.5.6.4. Register an open socket to wait for data using streams<a class="headerlink" href="#register-an-open-socket-to-wait-for-data-using-streams" title="Permalink to this headline">¶</a></h3>
<p>Coroutine waiting until a socket receives data using the
<a class="reference internal" href="#asyncio.open_connection" title="asyncio.open_connection"><tt class="xref py py-func docutils literal"><span class="pre">open_connection()</span></tt></a> function:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="kn">import</span> <span class="nn">asyncio</span>
<span class="k">try</span><span class="p">:</span>
    <span class="kn">from</span> <span class="nn">socket</span> <span class="k">import</span> <span class="n">socketpair</span>
<span class="k">except</span> <span class="ne">ImportError</span><span class="p">:</span>
    <span class="kn">from</span> <span class="nn">asyncio.windows_utils</span> <span class="k">import</span> <span class="n">socketpair</span>

<span class="nd">@asyncio</span><span class="o">.</span><span class="n">coroutine</span>
<span class="k">def</span> <span class="nf">wait_for_data</span><span class="p">(</span><span class="n">loop</span><span class="p">):</span>
    <span class="c"># Create a pair of connected sockets</span>
    <span class="n">rsock</span><span class="p">,</span> <span class="n">wsock</span> <span class="o">=</span> <span class="n">socketpair</span><span class="p">()</span>

    <span class="c"># Register the open socket to wait for data</span>
    <span class="n">reader</span><span class="p">,</span> <span class="n">writer</span> <span class="o">=</span> <span class="k">yield from</span> <span class="n">asyncio</span><span class="o">.</span><span class="n">open_connection</span><span class="p">(</span><span class="n">sock</span><span class="o">=</span><span class="n">rsock</span><span class="p">,</span> <span class="n">loop</span><span class="o">=</span><span class="n">loop</span><span class="p">)</span>

    <span class="c"># Simulate the reception of data from the network</span>
    <span class="n">loop</span><span class="o">.</span><span class="n">call_soon</span><span class="p">(</span><span class="n">wsock</span><span class="o">.</span><span class="n">send</span><span class="p">,</span> <span class="s">&#39;abc&#39;</span><span class="o">.</span><span class="n">encode</span><span class="p">())</span>

    <span class="c"># Wait for data</span>
    <span class="n">data</span> <span class="o">=</span> <span class="k">yield from</span> <span class="n">reader</span><span class="o">.</span><span class="n">read</span><span class="p">(</span><span class="mi">100</span><span class="p">)</span>

    <span class="c"># Got data, we are done: close the socket</span>
    <span class="nb">print</span><span class="p">(</span><span class="s">&quot;Received:&quot;</span><span class="p">,</span> <span class="n">data</span><span class="o">.</span><span class="n">decode</span><span class="p">())</span>
    <span class="n">writer</span><span class="o">.</span><span class="n">close</span><span class="p">()</span>

    <span class="c"># Close the second socket</span>
    <span class="n">wsock</span><span class="o">.</span><span class="n">close</span><span class="p">()</span>

<span class="n">loop</span> <span class="o">=</span> <span class="n">asyncio</span><span class="o">.</span><span class="n">get_event_loop</span><span class="p">()</span>
<span class="n">loop</span><span class="o">.</span><span class="n">run_until_complete</span><span class="p">(</span><span class="n">wait_for_data</span><span class="p">(</span><span class="n">loop</span><span class="p">))</span>
<span class="n">loop</span><span class="o">.</span><span class="n">close</span><span class="p">()</span>
</pre></div>
</div>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p>The <a class="reference internal" href="asyncio-protocol.html#asyncio-register-socket"><em>register an open socket to wait for data using a protocol</em></a> example uses a low-level protocol created by the
<a class="reference internal" href="asyncio-eventloop.html#asyncio.BaseEventLoop.create_connection" title="asyncio.BaseEventLoop.create_connection"><tt class="xref py py-meth docutils literal"><span class="pre">BaseEventLoop.create_connection()</span></tt></a> method.</p>
<p class="last">The <a class="reference internal" href="asyncio-eventloop.html#asyncio-watch-read-event"><em>watch a file descriptor for read events</em></a> example uses the low-level
<a class="reference internal" href="asyncio-eventloop.html#asyncio.BaseEventLoop.add_reader" title="asyncio.BaseEventLoop.add_reader"><tt class="xref py py-meth docutils literal"><span class="pre">BaseEventLoop.add_reader()</span></tt></a> method to register the file descriptor of a
socket.</p>
</div>
</div>
</div>
</div>


          </div>
        </div>
      </div>
      <div class="sphinxsidebar">
        <div class="sphinxsidebarwrapper">
  <h3><a href="../contents.html">Table Of Contents</a></h3>
  <ul>
<li><a class="reference internal" href="#">18.5.5. Streams (high-level API)</a><ul>
<li><a class="reference internal" href="#stream-functions">18.5.5.1. Stream functions</a></li>
<li><a class="reference internal" href="#streamreader">18.5.5.2. StreamReader</a></li>
<li><a class="reference internal" href="#streamwriter">18.5.5.3. StreamWriter</a></li>
<li><a class="reference internal" href="#streamreaderprotocol">18.5.5.4. StreamReaderProtocol</a></li>
<li><a class="reference internal" href="#incompletereaderror">18.5.5.5. IncompleteReadError</a></li>
<li><a class="reference internal" href="#stream-examples">18.5.5.6. Stream examples</a><ul>
<li><a class="reference internal" href="#tcp-echo-client-using-streams">18.5.5.6.1. TCP echo client using streams</a></li>
<li><a class="reference internal" href="#tcp-echo-server-using-streams">18.5.5.6.2. TCP echo server using streams</a></li>
<li><a class="reference internal" href="#get-http-headers">18.5.5.6.3. Get HTTP headers</a></li>
<li><a class="reference internal" href="#register-an-open-socket-to-wait-for-data-using-streams">18.5.5.6.4. Register an open socket to wait for data using streams</a></li>
</ul>
</li>
</ul>
</li>
</ul>

  <h4>Previous topic</h4>
  <p class="topless"><a href="asyncio-protocol.html"
                        title="previous chapter">18.5.4. Transports  and protocols (low-level API)</a></p>
  <h4>Next topic</h4>
  <p class="topless"><a href="asyncio-subprocess.html"
                        title="next chapter">18.5.6. Subprocess</a></p>
<h3>This Page</h3>
<ul class="this-page-menu">
  <li><a href="../bugs.html">Report a Bug</a></li>
  <li><a href="../_sources/library/asyncio-stream.txt"
         rel="nofollow">Show Source</a></li>
</ul>

<div id="searchbox" style="display: none">
  <h3>Quick search</h3>
    <form class="search" action="../search.html" method="get">
      <input type="text" name="q" />
      <input type="submit" value="Go" />
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
    <p class="searchtip" style="font-size: 90%">
    Enter search terms or a module, class or function name.
    </p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
      <div class="clearer"></div>
    </div>  
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="../genindex.html" title="General Index"
             >index</a></li>
        <li class="right" >
          <a href="../py-modindex.html" title="Python Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="asyncio-subprocess.html" title="18.5.6. Subprocess"
             >next</a> |</li>
        <li class="right" >
          <a href="asyncio-protocol.html" title="18.5.4. Transports and protocols (low-level API)"
             >previous</a> |</li>
        <li><img src="../_static/py.png" alt=""
                 style="vertical-align: middle; margin-top: -1px"/></li>
        <li><a href="https://www.python.org/">Python</a> &raquo;</li>
        <li>
          <a href="../index.html">3.4.3 Documentation</a> &raquo;
        </li>

          <li><a href="index.html" >The Python Standard Library</a> &raquo;</li>
          <li><a href="ipc.html" >18. Interprocess Communication and Networking</a> &raquo;</li>
          <li><a href="asyncio.html" >18.5. <tt class="docutils literal"><span class="pre">asyncio</span></tt> &#8211; Asynchronous I/O, event loop, coroutines and tasks</a> &raquo;</li> 
      </ul>
    </div>  
    <div class="footer">
    &copy; <a href="../copyright.html">Copyright</a> 1990-2015, Python Software Foundation.
    <br />
    The Python Software Foundation is a non-profit corporation.
    <a href="https://www.python.org/psf/donations/">Please donate.</a>
    <br />
    Last updated on Feb 25, 2015.
    <a href="../bugs.html">Found a bug</a>?
    <br />
    Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.2.3.
    </div>

  </body>
</html>

@KyuuKazami