Compare commits

..

1 Commits
main ... v15

Author SHA1 Message Date
FunctionsAPI
ce062157fa Automatic push from FunctionsAPI 2025-06-11 13:05:40 +00:00
3 changed files with 20 additions and 2 deletions

View File

@ -1,2 +1 @@
# d529d04d9fc44dee8dc3355e6082797f # python hello-world

17
main.py Normal file
View File

@ -0,0 +1,17 @@
def main(request):
# Declare and assign variables of different types
user_name = "Alice"
age = 25
is_student = True
score = 95.5
# Create a dictionary to hold the variables
response = {
"Name": user_name,
"Age": age,
"Is Student": is_student,
"Score": score
}
# Return the response
return response

2
requirements.txt Normal file
View File

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