Slide 2
Slide 2 text
What Is Async? What is Asyncio?
● Async is a way to do concurrency (multiple things at once) in Python
● Other concurrency methods: Processes and Threads
● Asyncio is an async library for Python based on coroutines
● Other async libraries for Python: Twisted (also based on coroutines), Gevent,
Eventlet (both based on “greenlets”)