functionapp-hanyadikhetvan-.../hanyadikhetvan/__init__.py

11 lines
261 B
Python
Raw Normal View History

2022-05-17 22:57:06 +02:00
import logging
from datetime import date
import azure.functions as func
def main(req: func.HttpRequest) -> func.HttpResponse:
startdate = date(2022, 2, 6)
return func.HttpResponse(
(date.today() - startdate).days / 7,
status_code=200)