Vue d'ensemble
Tornado 6.4, publie le 8 juin 2024, assure la compatibilite complete avec Python 3.12.
Fonctionnalites principales
Support Python 3.12
Tornado est compatible avec Python 3.12 et ses changements dans asyncio.
python
import tornado.ioloop
import tornado.web
class MainHandler(tornado.web.RequestHandler):
def get(self):
self.write('Hello, Tornado 6.4!')
app = tornado.web.Application([
(r'/', MainHandler),
])
# app.listen(8888)
# tornado.ioloop.IOLoop.current().start()
