-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.py
22 lines (16 loc) · 803 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
####################################################################################################
from wsgiref.simple_server import make_server
from pyramid.config import Configurator
SERVER_PORT = 8080
####################################################################################################
if __name__ == "__main__":
with Configurator() as config:
config.add_route("home", "/")
config.add_route("ocr", "/ocr")
config.add_static_view(name="data", path="static")
config.include("pyramid_chameleon")
config.scan("views")
app = config.make_wsgi_app()
server = make_server("0.0.0.0", SERVER_PORT, app)
server.serve_forever()
####################################################################################################