Note: This post is part of a series of posts about Prefect. If you haven’t read the previous post, I recommend reading it first. Introduction In the previous post, we have learned about Prefect, and we have created a simple Prefect flow that makes a GET request to the Bored API, prints the response to the console, and saves it as a Prefect artifact. Nevertheless, we ran our flow directly from the CLI as a Python script....
Scheduling API Requests With Prefect - Part 1
Note: This post is part of a series of posts about Prefect. Introduction One of the most common tasks in data engineering is to make API requests. This is a task that can be automated with Prefect. Prefect is an ecosystem for building, running, and monitoring data workflows. Its core is open source, and it is written in Python. This is the first post in a series of posts about Prefect....