mirror of
https://github.com/Kludex/awesome-fastapi-projects.git
synced 2025-03-25 15:09:49 +00:00
17 lines
277 B
Python
17 lines
277 B
Python
from prefect import task, Flow
|
|
|
|
|
|
@task(name="Call GitHub API search")
|
|
def github_api_search():
|
|
pass
|
|
|
|
|
|
@task(name="Scrap GitHub repositories")
|
|
def scrapy_github_repos():
|
|
pass
|
|
|
|
|
|
with Flow("FastAPI Repositories") as flow:
|
|
github_api_search()
|
|
scrapy_github_repos()
|