Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 912 Bytes

File metadata and controls

34 lines (22 loc) · 912 Bytes

Tasks

Prefect-meemoo Index / Prefect Meemoo / Services / Tasks

Auto-generated documentation for prefect_meemoo.services.tasks module.

sync_etl_service

Show source in tasks.py:16

Task that runs an ETL service over HTTP.

Arguments

  • api_server str - URL of the service
  • api_route str - API route to run
  • last_modified str - A datetime indicating when the ETL was last run

Returns

  • _type_ - description

Signature

@task(
    name="Run HTTP ETL service",
    description="Runs an ETL service that is exposed by HTTP API.",
)
def sync_etl_service(api_server: str, api_route: str, last_modified: str): ...