TellApart uses the gevent library to build highly concurrent and asynchronous Python applications. Gevent allows synchronous Python code to run asynchronously by using greenlets. It monkey-patches blocking libraries so that when blocking calls occur, other greenlets can run instead of the entire process blocking. This allows TellApart to build applications like their front-end server and database proxy that can handle millions of requests per day with low latency using a single process per core.