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')