From 21b4fb334965b77671be4d7ac89e368a0fd5676b Mon Sep 17 00:00:00 2001 From: GalNey <60622945+GalNey@users.noreply.github.com> Date: Fri, 21 Oct 2022 18:17:53 +0300 Subject: [PATCH] add explanation about the use of this library (#2626) --- .../content/106-python-frameworks/101-asynchronous/100-gevent.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/roadmaps/108-python/content/106-python-frameworks/101-asynchronous/100-gevent.md b/content/roadmaps/108-python/content/106-python-frameworks/101-asynchronous/100-gevent.md index b0a42e78d..c01ec088e 100644 --- a/content/roadmaps/108-python/content/106-python-frameworks/101-asynchronous/100-gevent.md +++ b/content/roadmaps/108-python/content/106-python-frameworks/101-asynchronous/100-gevent.md @@ -1,6 +1,7 @@ # gevent gevent is a Python library that provides a high-level interface to the event loop. +It is based on non-blocking IO (libevent/libev) and lightweight greenlets. Non-blocking IO means requests waiting for network IO won't block other requests; greenlets mean we can continue to write code in synchronous style. Free Content gevent — Official Website