13 lines
169 B
Python
13 lines
169 B
Python
# encoding:utf-8
|
|
|
|
import flask
|
|
|
|
app = flask.Flask(__name__)
|
|
|
|
if __name__ == '__main__':
|
|
app.run(
|
|
host='0.0.0.0',
|
|
port=8081,
|
|
debug=True
|
|
)
|