Jamie McDonald
01/13/2022, 11:40 AMmap()
functionality? My scenario is a list of URLs that should be used for making requests to but want to perform the requests in batches of 'n' rather than overwhelming a server with them all at once.Anna Geller
from prefect import task
@task(tags=["yourtagname"])
def my_task():
pass
Jamie McDonald
01/13/2022, 12:03 PM