this post was submitted on 26 Jun 2023
4 points (100.0% liked)

All things Python

15 readers
1 users here now

A magazine for the discussion of the Python programming language

founded 1 year ago
 

Gevent seems pretty straightforward. Check out this example:

Here is a tutorial.

Unlike asyncio, with gevent you can continue to use the libraries you're familiar with, and the exact same codebase can be run with or without gevent "enabled". You don't need special async versions of each library, as you do with async/await code.

What are the issues you ran in to while using gevent, that asyncio solved?

Why did AsyncIO take off when we already had gevent?

no comments (yet)
sorted by: hot top controversial new old
there doesn't seem to be anything here