- Define
asyncio
terms and explain how generators evolved toawait
- Demonstrate the power of asynchronous via web client
- Walk through javascript
EventSource
code; demonstrating async consumption - Connect to server and Update Connection via
curl
- Build a Python
asyncio
Client - Build a Python
asyncio
Server - Want more
asyncio
checkout out Joel's talk - Connect with us on Twitter @eloy @jpwatts
curl "http://159.203.72.183:8000/events"
# Remember to replace the last portion with the connection id
curl -X PUT -d '{"text":"Howdy, world"}' "http://159.203.72.183:8000/data/<replace-with-id>"