comparison environment.py @ 1:0f532eb91364

switch from slow pipenv to fast pdm
author drewp@bigasterisk.com
date Thu, 31 Mar 2022 23:49:08 -0700
parents 3c1bc3bc5a6c
children e7f33fa31883
comparison
equal deleted inserted replaced
0:3c1bc3bc5a6c 1:0f532eb91364
100 # }), 100 # }),
101 ] 101 ]
102 cyclone.web.Application.__init__(self, handlers, masterGraph=masterGraph) 102 cyclone.web.Application.__init__(self, handlers, masterGraph=masterGraph)
103 103
104 task.LoopingCall(update, masterGraph).start(1) 104 task.LoopingCall(update, masterGraph).start(1)
105 reactor.listenTCP(8080, Application()) 105 reactor.listenTCP(8000, Application())
106 reactor.run() 106 reactor.run()
107 107
108 108
109 if __name__ == '__main__': 109 if __name__ == '__main__':
110 main() 110 main()