Automatic push from FunctionsAPI

This commit is contained in:
FunctionsAPI 2025-06-11 12:59:26 +00:00
parent 0f15b3cdc9
commit 3b2bbe6e50
3 changed files with 20 additions and 2 deletions

View File

@ -1,2 +1 @@
# 0895b2e2dcba466986a1c8524872d02f
# python hello-world

17
main.py Normal file
View File

@ -0,0 +1,17 @@
def main():
# 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