gpt4 book ai didi

带有 Azure Functions 的 Python 文件

转载 作者:行者123 更新时间:2023-12-04 10:28:17 25 4
gpt4 key购买 nike

我编写了一个 python 脚本来从 API 获取信息,进行一些 Pandas 处理并将其格式化以使用 SQLAlchemy 插入到我的 azure postgres 实例中。我希望能够每天晚上运行它,显然是自动化的,但我找不到任何实际显示有关如何合并 azure 函数或如何将我的脚本合并到 azure 函数中的详细信息。

任何帮助都会很棒,但我真的很感激您发现有用的资源。

最佳答案

最简单的方法是使用时间触发器,然后使用 Cron 格式指定所需的执行时间。

这是一个示例:

函数.json

{
"name": "mytimer",
"type": "timerTrigger",
"direction": "in",
"schedule": "0 */5 * * * *"
}

代码:

import datetime
import logging

import azure.functions as func


def main(mytimer: func.TimerRequest) -> None:
utc_timestamp = datetime.datetime.utcnow().replace(
tzinfo=datetime.timezone.utc).isoformat()

if mytimer.past_due:
logging.info('The timer is past due!')

logging.info('Python timer trigger function ran at %s', utc_timestamp)

https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer?tabs=python#example

关于带有 Azure Functions 的 Python 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60535956/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com