Bianca Hoch
12/17/2024, 3:12 PMBianca Hoch
12/17/2024, 3:16 PM!prefect config set PREFECT_API_KEY='PASTE-YOUR-API-KEY-HERE'
!prefect config set PREFECT_API_URL='<https://api.prefect.cloud/api/accounts/YOUR-ACCOUNT-ID/workspaces/YOUR-WORKSPACE-ID>'
Adam Harper
12/17/2024, 3:17 PMBianca Hoch
12/17/2024, 3:17 PMBianca Hoch
12/17/2024, 3:17 PMBianca Hoch
12/17/2024, 3:17 PMBianca Hoch
12/17/2024, 3:51 PMfrom prefect import flow
@flow(log_prints=True)
def google_colab():
print("Hello from google colab!")
if __name__ == "__main__":
google_colab()