Breaker/Builder/Designer
I just wanted to check out what i’ve been missing with Medium lately.
#!/usr/bin/env pythonimport osfrom flask import Flask@app.route('/')def hello(): return 'Hello World'port = os.getenv('PORT', '5000')if…