Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new asyncio tutorials in the HOWTO section #2

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
42 changes: 42 additions & 0 deletions Doc/howto/asyncio-advanced.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
.. _asyncio-advanced-tutorial:

******************************
Advanced asyncio Tutorial
******************************

:Author: List TBD


.. topic:: Abstract

This tutorial explains how network sockets and selectors are tied to
the asyncio event loop, how to use the asyncio streams API to implement
a client for a network application protocol, and finally how to use
the asyncio transport and protocol APIs to write better structured and
faster client libraries.

The Redis protocol is used for examples, and a simple Redis protocol
server is provided so that the tutorial can be completed without an
actual Redis installation.


A Short Primer on Network IO
============================


Case Study: The Redis Protocol
==============================


A Redis Client Library Using the Streams API
============================================


A Redis Client Library Using Transports and Protocols
=====================================================


Appendix: A Simple Restricted Redis Protocol Server
===================================================


44 changes: 44 additions & 0 deletions Doc/howto/asyncio.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
.. _asyncio-tutorial:

******************************
Asynchronous IO Tutorial
******************************

:Author: List TBD


.. topic:: Abstract

This tutorial explains python coroutines (async/await) and the motivation
for using them to provide structure for applications using asynchronous IO.
The asyncio event loop from the python standard library is used for
scheduling coroutines and providing low-level IO operations.

This tutorial should provide you with the background necessary to begin
writing applications that make use of python coroutines.


Why Asynchronous IO?
====================


Coroutines in Python
====================


Simple Coroutine Examples using asyncio
=======================================


Coroutine Examples using aiohttp
================================


How asyncio Works
=================


Tasks in asyncio
================


2 changes: 2 additions & 0 deletions Doc/howto/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,6 @@ Currently, the HOWTOs are:
ipaddress.rst
clinic.rst
instrumentation.rst
asyncio.rst
asyncio-advanced.rst