/geventing

This repo holds the source material for my course on Gevent - a Python library for concurency based on coroutines.

Primary LanguagePython

Welcome

This is the supporting material for my course on gevent.

Gevent is a coroutine -based Python networking library that uses greenlet to provide a high-level synchronous API on top of the libev or libuv event loop.

In order to reproduce the example the following steps need to be done. Install at least Python3.7 on your computer. Perform the following steps.

python -m pip install virtualenv
virtualenv g
.\g\scripts\activate
pip install gevent requests

Usefull tutorial in general.

Another usefull tutorial about greenlets!

Here are the official examples you can use to practice.