Last active
May 14, 2021 14:09
-
-
Save alperen-selcuk/48c26b08e644078df77f00ac385fbd40 to your computer and use it in GitHub Desktop.
app2 for 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 | |
app2 = Flask(__name__) | |
@app2.route('/') | |
def hello_world(): | |
return 'this is response from app2' | |
if __name__ == '__main__': | |
app2.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