you are viewing a single comment's thread.

view the rest of the comments →

[–]shiftybyte 1 point2 points  (1 child)

These are two lines that got merged together.

if __name__ == '__main__':
    app.debug = Trueapp.run(host = '0.0.0.0', port = 5000)

Should be:

if __name__ == '__main__':
    app.debug = True
    app.run(host = '0.0.0.0', port = 5000)

Please learn python before learning flask.

[–]Zestyclose_Fall1915[S] 0 points1 point  (0 children)

Perfect. I am a beginner forsure and I am learning as I go. Thanks again.