Skip to content
This repository was archived by the owner on May 31, 2021. It is now read-only.

Fix codeblocks #35

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 4 additions & 12 deletions getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,28 +23,20 @@ All platforms with ``conda``
* Create a new Python 3.5 environment (named ``aio35``, use a different
if you like)::

.. highlight:: bash

conda create -n aio35 python=3.5
conda create -n aio35 python=3.5

* Activate it.
Linux and OS X::

.. highlight:: bash

$ source activate aio35
$ source activate aio35

Windows::

.. highlight:: bash

$ source activate aio35
$ source activate aio35

* Install ``aiohttp``::

.. highlight:: bash

$(aio35) pip install aiohttp
$(aio35) pip install aiohttp

Platform specific
-----------------
Expand Down
2 changes: 0 additions & 2 deletions hello_world.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ all scheduled :term:`tasks <task>` could execute, which results in a warning.

Warning::

.. highlight:: none

Task was destroyed but it is pending!
task: <Task pending coro=<say() done, defined at examples/loop_stop.py:3>
wait_for=<Future pending cb=[Task._wakeup()]>>
Expand Down
12 changes: 0 additions & 12 deletions webscraper.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ This is a very simple web server. (See below for the code.)
Its only purpose is to wait for a given amount of time.
Test it by running it from the command line::

.. highlight:: bash

$ python simple_server.py

It will answer like this::
Expand Down Expand Up @@ -127,8 +125,6 @@ difference provides the elapsed run time.

Finally, we can run our client::

.. highlight:: bash

$ python synchronous_client.py

and get this output::
Expand Down Expand Up @@ -258,8 +254,6 @@ This means, we wait until each pages has been retrieved before asking for
the next.
Let's run it from the command-line to see what happens::

.. highlight:: bash

$ async_client_blocking.py
It took 11.06 seconds for a total waiting time of 11.00.
Waited for 1.00 seconds.
Expand Down Expand Up @@ -326,8 +320,6 @@ So, for a list with 100 tasks it would mean:

Let's see if we got any faster::

.. highlight:: bash

$ async_client_nonblocking.py
It took 5.08 seconds for a total waiting time of 11.00.
Waited for 1.00 seconds.
Expand Down Expand Up @@ -367,8 +359,6 @@ The library aiohttp_ allows to write HTTP client and server applications,
using a high-level approach.
Install with::

.. highlight:: bash

$ pip install aiohttp


Expand Down Expand Up @@ -419,8 +409,6 @@ to ``fetch_page()`` as the first argument.

Finally, we run this program::

.. highlight:: bash

$ python aiohttp_client.py
It took 5.04 seconds for a total waiting time of 11.00.
Waited for 1.00 seconds.
Expand Down