feat(django): failure django is not faster than base python, but is WAAAAAYYY EASIER to code in endpoints, and can work with nginx

This commit is contained in:
darkicewolf50
2024-11-26 21:19:53 +00:00
parent 8f59972e19
commit 0c60ffc5ed
28 changed files with 112 additions and 5 deletions

View File

@ -0,0 +1,36 @@
import json
import datetime
def SelectAppointment (appointmentJson):
"""
packages up a response for a http request
``appointmentJSON``: ``JSON``
The appointment date and time details
``returns``: ``json``
Returns the status of the booking confirmation
``Develop in part by``: Brock T
``Contact``: darkicewolf50@gmail.com
"""
status = mockWriteFunction(appointmentJson)
if status:
resBody = {"Success": True}
else:
resBody = {"Success": False}
return {
"statusCode": 200,
"isBase64ENcoded": "false",
"body": json.dumps(resBody)
}
def mockWriteFunction(appTime):
return 0
if __name__ == "__main__":
print(SelectAppointment("10:00 AM"))