From 77aa0205bba19a057eb66f03e0d7c8b40cabcffc Mon Sep 17 00:00:00 2001 From: Fatimah Emad El-Den <63984422+xxfatj@users.noreply.github.com> Date: Mon, 3 May 2021 14:51:29 +0300 Subject: [PATCH] Update api_server.py --- Lesson_2/06_Sending API Requests/api_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lesson_2/06_Sending API Requests/api_server.py b/Lesson_2/06_Sending API Requests/api_server.py index 0d501d1..be6fb77 100644 --- a/Lesson_2/06_Sending API Requests/api_server.py +++ b/Lesson_2/06_Sending API Requests/api_server.py @@ -1,7 +1,7 @@ #THIS IS A WEBSERVER FOR DEMONSTRATING THE TYPES OF RESPONSES WE SEE FROM AN API ENDPOINT from flask import Flask app = Flask(__name__) - + #GET REQUEST @app.route('/readHello')