Created
May 14, 2021 11:28
-
-
Save alperen-selcuk/78bac55c00f34271facecc3b0578aabf to your computer and use it in GitHub Desktop.
app1 with lb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import request, Flask | |
import json | |
app1 = Flask(__name__) | |
@app1.route('/') | |
def hello_world(): | |
return 'this is response from app1' | |
if __name__ == '__main__': | |
app1.run(debug=True, host='0.0.0.0') | |
#5000 portundan cevap verecek. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment