'Python terminal prints everything twice with flask API Main class
I am creating a API that will show a some facts about each day as a json file. I have created some print statements in my Main class that shows how the software can be used.
For some reason Python is printing the print-statements twice into my terminal.
Terminal output
C:\Users\s\AppData\Local\Programs\Python\Python310\python.exe C:/Users/s/PycharmProjects/TodayPython/Main.py
All days: http://127.0.0.1:3000/api/v1/resources/today/all
Today by ID: http://127.0.0.1:3000/api/v1/resources/today?id=2
Today by month and day: http://127.0.0.1:3000/api/v1/resources/today?month=05&day=06
* Serving Flask app 'Main' (lazy loading)
* Environment: production
WARNING: This is a development server. Do not use it in a production deployment.
Use a production WSGI server instead.
* Debug mode: on
* Running on http://localhost:3000 (Press CTRL+C to quit)
* Restarting with stat
All days: http://127.0.0.1:3000/api/v1/resources/today/all
Today by ID: http://127.0.0.1:3000/api/v1/resources/today?id=2
Today by month and day: http://127.0.0.1:3000/api/v1/resources/today?month=05&day=06
* Debugger is active!
* Debugger PIN: 790-993-637
Main.py
import datetime
import flask
from flask import jsonify, request, app
class Main:
app = flask.Flask(__name__) # Creates the Flask application object
app.config["DEBUG"] = True
# Readme
dt = datetime.datetime.today()
print("All days: http://127.0.0.1:3000/api/v1/resources/today/all")
print("Today by ID: http://127.0.0.1:3000/api/v1/resources/today?id=2")
print("Today by month and day: http://127.0.0.1:3000/api/v1/resources/today?month=" + '{:02d}'.format(
dt.month) + "&day=" + '{:02d}'.format(dt.day))
def __init__(self):
# Test data for our catalog in the form of a list of dictionaries.
# Jokes from here: https://www.rd.com/list/short-jokes/
self.todays = [
{'id': 0,
'month': '05',
'day': '04',
'historic_event': '1670 – A royal charter granted the Hudsons Bay Company a monopoly in the fur trade in Ruperts Land (present-day Canada).',
'joke': 'What’s the best thing about Switzerland? I don’t know, but the flag is a big plus.'},
{'id': 1,
'month': '05',
'day': '05',
'historic_event': '2010 – Mass protests in Greece erupt in response to austerity measures imposed by the government as a result of the Greek government-debt crisis.',
'joke': 'I invented a new word! Plagiarism!'},
{'id': 2,
'month': '05',
'day': '06',
'historic_event': '2002– Founding of SpaceX.',
'joke': 'Did you hear about the mathematician who’s afraid of negative numbers? He’ll stop at nothing to avoid them.'},
{'id': 3,
'month': '05',
'day': '07',
'historic_event': '2000 - Vladimir Putin is inaugurated as president of Russia.',
'joke': 'How did the hacker escape from the police? He ransomware.'},
]
@self.app.route('/', methods=['GET'])
def __home():
return self.home()
@self.app.route('/api/v1/resources/today/all', methods=['GET'])
def __api_all():
return self.api_all()
@self.app.route('/api/v1/resources/today', methods=['GET'])
def __api_id():
return self.api_id()
self.app.run(host="localhost", port=3000, debug=True)
@staticmethod
def home():
return '''<h1>Today</h1>
<p>A prototype API for finding out what happened on this day</p>'''
def api_all(self):
return jsonify(self.todays)
def api_id(self):
# Create an empty list for our results
results = []
# Check if an ID was provided as part of the URL.
# If ID is provided, assign it to a variable.
# If no ID is provided, display an error in the browser.
if 'id' in request.args:
id = int(request.args['id'])
# Loop through the data and match results that fit the requested ID.
# IDs are unique, but other fields might return many results
for today in self.todays:
if today['id'] == id:
results.append(today)
else:
# Month and day search
if 'month' in request.args and 'day' in request.args:
month = str(request.args['month'])
day = str(request.args['day'])
for today in self.todays:
if today['month'] == month and today['day'] == day:
results.append(today)
result_length = len(results)
if result_length == 0:
return "Error: Not yet implemented or not found"
else:
return "Error: No id, month or day field provided. Please specify."
# Use the jsonify function from Flask to convert our list of
# Python dictionaries to the JSON format.
return jsonify(results)
Main();
tests/test.py
import unittest
import json
from Main import Main
class Test(unittest.TestCase):
def setUp(self):
self.ctx = Main.app.app_context()
self.ctx.push()
self.client = Main.app.test_client()
def tearDown(self):
self.ctx.pop()
# test home #
""" Test Home will ho to home page of the flask API and check if the home str equals
the content of the home page """
def test_home(self):
home_str = '''<h1>Today</h1>
<p>A prototype API for finding out what happened on this day</p>'''
response = self.client.get("/", data={"content": home_str})
self.assertEqual(response.status_code, 200)
self.assertEqual(home_str, response.get_data(as_text=True))
# test all #
""" Test goes to all API and should then display the entire json object.
The test checks if the first id equals 0. """
def test_all(self):
response = self.client.get("/api/v1/resources/today/all")
data = json.loads(response.get_data(as_text=True))
self.assertEqual(data[0]['id'], 0)
# test id #
""" Test should pull the json object for id 2. The test check that it gets
the ID 2. """
def test_id(self):
response = self.client.get("/api/v1/resources/today?id=2")
data = json.loads(response.get_data(as_text=True))
self.assertEqual(data[0]['id'], 2)
# test id #
""" Test should pull the json object for id 2. The test check that it gets
the ID 2. """
def test_month_day(self):
response = self.client.get("/api/v1/resources/today?month=05&day=06")
data = json.loads(response.get_data(as_text=True))
self.assertEqual(data[0]['month'], "05")
self.assertEqual(data[0]['day'], "06")
if __name__ == "__main__":
unittest.main()
Why is the terminal print statements beeing printed twice?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
