Raspberry Pi - Web Server and API
You wrote this Flask app on Raspberry Pi but get an error when running it:
What is the main problem?
from flask import Flask
app = Flask(__name__)
@app.route('/hello')
def hello():
print('Hello from Raspberry Pi')
if __name__ == '__main__':
app.run() What is the main problem?
