Jumpstarter is based on the Actor model. It aims to help define self-contained pieces of business logic and facilitate communication between them while maintaining a separation of concerns. The Act... (more…)
Read more »
We will set up a Python script that reads data from Google Sheets, generates a static site using a predefined template, and deploys it to an S3 bucket. (more…)
Read more »
asyncio is an asynchronous I/O framework shipping with the Python Standard Library. In this blog post, we introduce uvloop: a full, drop-in replacement for the asyncio event loop. uvloop is written in Cython and built on top of libuv. (more…)
Read more »
<p>The <code>zip()</code> function accepts a series of iteratable objects as arguments, <strong>packages</strong> the corresponding elements of different objects <strong>into a tuple</strong>, and <em... (more…)
Read more »