gevent/gevent
Coroutine-based concurrency library for Python observed · 2026-08-28
Health v2 · maintenance only
66/100
- Activity 97
- Release rhythm 8
- Longevity 100
Flags: no_license
How is this computed?
round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10) — computed 2026-09-03. Adoption (stars, forks) is never an input.
- gap_med: n/a
- age_days: 5102
- days_rel: n/a
- days_push: 23
- n_releases_24m: 0
Adoption not part of the score
6447 stars · 964 forks observed · 2026-08-28
What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-29, confidence not recorded
gevent is a coroutine-based concurrency library for Python built on greenlets, providing a high-level synchronous API on top of libev or libuv event loops. It can monkey-patch the standard library to make blocking I/O cooperative, enabling scalable concurrent network applications.
Use cases
- run thousands of concurrent network connections in python
- make blocking python libraries cooperative without rewriting code
- replace threads with lightweight coroutines for io-bound workloads
- build a high-performance wsgi server in python
- migrate threaded python code to async without callbacks
When to choose
- you have io-bound python code using blocking libraries and want concurrency with minimal changes
- you want a synchronous-style api instead of asyncio's async/await
- you need a battle-tested greenlet-based concurrency solution
When to avoid
- you are starting a new project and can use asyncio from the standard library
- you need cpu-bound parallelism rather than io-bound concurrency
- monkey-patching the standard library is unacceptable in your environment
Facets
library · maturity stable
concurrency http-server http-client networking developer-tools backend microservices python cross-platform greenlet coroutines monkey-patching async-io high-level-networking-library
1 source
- readme: https://github.com/gevent/gevent · fetched 2026-08-28 · c9651462941d
Member repositories
| Repository | Role | Health v2 |
|---|---|---|
| gevent/gevent | main | 66 |
For agents
Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem