19 lines
284 B
Python
19 lines
284 B
Python
|
import os
|
||
|
import time
|
||
|
import sys
|
||
|
import sqlite3
|
||
|
import python_artnet as Artnet
|
||
|
import DMXEnttecPro
|
||
|
import sacn
|
||
|
import flask
|
||
|
|
||
|
|
||
|
|
||
|
webapp = flask.Flask(__name__)
|
||
|
|
||
|
@webapp.route("/")
|
||
|
def index():
|
||
|
return "Hello world!"
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
webapp.run(host="0.0.0.0", port=80)
|