Compare commits

...

1 Commits
main ... v14

Author SHA1 Message Date
FunctionsAPI
b74be1c9c9 Automatic push from FunctionsAPI 2025-01-21 11:10:51 +00:00
3 changed files with 13 additions and 2 deletions

View File

@ -1,2 +1 @@
# 421234f4865e4e2db8ed0e71bb2373c1 # python hello-world

10
main.py Normal file
View File

@ -0,0 +1,10 @@
def print_name(name):
# Print the name
print("The name is:", name)
def main(request):
request_json = request.get_json(silent=True)
print(request_json)
name = "Ali" # You can replace this with any name
print_name(name)
return name

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
functions-framework==1.4.3
markupsafe==2.0.1