2022-05-21 22:53:54 +02:00
|
|
|
from math import floor
|
|
|
|
from datetime import date
|
|
|
|
import azure.functions as func
|
|
|
|
|
|
|
|
|
|
|
|
def main(req: func.HttpRequest) -> func.HttpResponse:
|
2022-05-22 12:48:45 +02:00
|
|
|
startdate = date(2022, 2, 7)
|
2022-05-21 22:53:54 +02:00
|
|
|
currentweek = floor((date.today() - startdate).days / 7)
|
|
|
|
return func.HttpResponse(
|
|
|
|
str(currentweek),
|
|
|
|
status_code=200)
|