Get Early Access to The Python Quiz Book and Course

The Python Quiz Book and The Python Quiz Course are now available for early access. Both the course and the book will have 100+ quizzes and answers. Here are just some of the things you’ll learn about: Comprehensions f-strings Boolean math Generators Unpacking generalizations Lambdas Modulus operators Ternary expressions Callables Name shadowing Slicing Assignment expressions […]

Get Early Access to The Python Quiz Book and Course Read More »

Batch APIs reduce network round trips

Using Asyncio and Batch APIs for Remote Services

Introduction to Batch APIs In modern Python applications, it’s common to access remote API using REST or other web-based technologies. Batch APIs are capable of processing multiple requests with a single call. You can use batch APIs to reduce the number of network calls to the remote service. This is ideal when you have to

Using Asyncio and Batch APIs for Remote Services Read More »