Skip to content

Latest commit

 

History

History

13_async_development

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
group hidden
Practical Python
true

Async Development with Python

Python is a single-threaded language, which means that asynchronous development can sometimes be tricky.

In this section we learn about multi-processing, multi-threading, and async development using coroutines and the async and await keywords.

These three different types of asynchronous development each have their strengths and weaknesses, so it's important to understand them all.