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