[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-2380":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":17,"stars7d":18,"stars30d":19,"stars90d":16,"forks30d":16,"starsTrendScore":20,"compositeScore":21,"rankGlobal":10,"rankLanguage":10,"license":22,"archived":23,"fork":23,"defaultBranch":24,"hasWiki":25,"hasPages":25,"topics":26,"createdAt":10,"pushedAt":10,"updatedAt":29,"readmeContent":30,"aiSummary":31,"trendingCount":16,"starSnapshotCount":16,"syncStatus":18,"lastSyncTime":32,"discoverSource":33},2380,"tornado","tornadoweb\u002Ftornado","tornadoweb","Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.","http:\u002F\u002Fwww.tornadoweb.org\u002F",null,"Python",22183,5533,953,181,0,1,2,11,3,45,"Apache License 2.0",false,"master",true,[27,28],"asynchronous","python","2026-06-12 02:00:40","Tornado Web Server\n==================\n\n.. image:: https:\u002F\u002Fbadges.gitter.im\u002FJoin%20Chat.svg\n   :alt: Join the chat at https:\u002F\u002Fgitter.im\u002Ftornadoweb\u002Ftornado\n   :target: https:\u002F\u002Fgitter.im\u002Ftornadoweb\u002Ftornado?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\n\n`Tornado \u003Chttp:\u002F\u002Fwww.tornadoweb.org>`_ is a Python web framework and\nasynchronous networking library, originally developed at `FriendFeed\n\u003Chttp:\u002F\u002Ffriendfeed.com>`_.  By using non-blocking network I\u002FO, Tornado\ncan scale to tens of thousands of open connections, making it ideal for\n`long polling \u003Chttp:\u002F\u002Fen.wikipedia.org\u002Fwiki\u002FPush_technology#Long_Polling>`_,\n`WebSockets \u003Chttp:\u002F\u002Fen.wikipedia.org\u002Fwiki\u002FWebSocket>`_, and other\napplications that require a long-lived connection to each user.\n\nHello, world\n------------\n\nHere is a simple \"Hello, world\" example web app for Tornado:\n\n.. code-block:: python\n\n    import asyncio\n    import tornado\n\n    class MainHandler(tornado.web.RequestHandler):\n        def get(self):\n            self.write(\"Hello, world\")\n\n    def make_app():\n        return tornado.web.Application([\n            (r\"\u002F\", MainHandler),\n        ])\n\n    async def main():\n        app = make_app()\n        app.listen(8888)\n        await asyncio.Event().wait()\n\n    if __name__ == \"__main__\":\n        asyncio.run(main())\n\nThis example does not use any of Tornado's asynchronous features; for\nthat see this `simple chat room\n\u003Chttps:\u002F\u002Fgithub.com\u002Ftornadoweb\u002Ftornado\u002Ftree\u002Fstable\u002Fdemos\u002Fchat>`_.\n\nDocumentation\n-------------\n\nDocumentation and links to additional resources are available at\nhttps:\u002F\u002Fwww.tornadoweb.org\n","Tornado 是一个用 Python 编写的 Web 框架和异步网络库，最初由 FriendFeed 开发。其核心功能包括非阻塞网络 I\u002FO，这使得 Tornado 能够支持数万个并发连接，非常适合长轮询、WebSocket 以及其他需要长时间保持用户连接的应用场景。通过使用异步处理技术，Tornado 在处理高并发请求时表现出色，是构建实时 Web 应用的理想选择。","2026-06-11 02:49:44","top_language"]