Home
Phyo's Log
Cancel

Generators - The Beginning of Asynchronicity in Python

If you have worked with asynchronous programming in Python, you may have used the async and await keywords before. It turns out that Python Generators are actually the building blocks of these abst...

Why gRPC Was Invented and Its Pros and Cons

For a client to communicate with a server with a communication protocol, we need a client library. It can be of any type such as REST/SOAP but at the very least, we need something that understands ...