Возникло исключение: NotImplementedError - PullRequest
0 голосов
/ 24 апреля 2020

Выполняется впервые и получает исключение на app.listen (порт)

import tornado.web
import tornado.ioloop

class basicRequestHandler(tornado.web.RequestHandler):
    def get(self):
        self.write("Hello, World this is a python command executed from the  backend.")

if __name__ == "__main__":
    app = tornado.web.Application([
        (r"/", basicRequestHandler)
    ])

    port = 8882
    app.listen(port)//Getting exception here 
    print(f"Application is ready and listening on port {port}")
    tornado.ioloop.IOLoop.current().start()
...