I copy pasted the code to create a minimal application from the FLASK docs .
from flask import Flask
app =Flask(__name__)
@app.route('/')
def home():
return "hello"
if __name__ == '__main__':
app.run() I get the 500 internal server error for this . Pls help me !
Yoriz write Nov-09-2021, 06:31 PM:
Please don't add your question to old threads, create one of your own threads in future posts.
I have moved your question into its own thread.
Please don't add your question to old threads, create one of your own threads in future posts.
I have moved your question into its own thread.
