{"id":13399090,"url":"https://github.com/tornadoweb/tornado","last_synced_at":"2025-09-09T20:56:57.555Z","repository":{"id":658918,"uuid":"301742","full_name":"tornadoweb/tornado","owner":"tornadoweb","description":"Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.","archived":false,"fork":false,"pushed_at":"2025-05-01T18:42:31.000Z","size":10564,"stargazers_count":21916,"open_issues_count":207,"forks_count":5529,"subscribers_count":972,"default_branch":"master","last_synced_at":"2025-05-05T13:56:13.088Z","etag":null,"topics":["asynchronous","python"],"latest_commit_sha":null,"homepage":"http://www.tornadoweb.org/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tornadoweb.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2009-09-09T04:55:16.000Z","updated_at":"2025-05-05T04:35:43.000Z","dependencies_parsed_at":"2023-07-05T15:16:53.439Z","dependency_job_id":"f8015d5b-25da-4e7d-9740-7154fe2c1ea8","html_url":"https://github.com/tornadoweb/tornado","commit_stats":{"total_commits":3791,"total_committers":449,"mean_commits":8.443207126948774,"dds":"0.34819308889475076","last_synced_commit":"0a39ba8b6ac0beb48a3244098cfa72ce1f59f215"},"previous_names":["facebook/tornado"],"tags_count":76,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tornadoweb%2Ftornado","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tornadoweb%2Ftornado/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tornadoweb%2Ftornado/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tornadoweb%2Ftornado/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tornadoweb","download_url":"https://codeload.github.com/tornadoweb/tornado/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253497461,"owners_count":21917695,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["asynchronous","python"],"created_at":"2024-07-30T19:00:34.048Z","updated_at":"2025-05-12T14:54:56.616Z","avatar_url":"https://github.com/tornadoweb.png","language":"Python","readme":"Tornado Web Server\n==================\n\n.. image:: https://badges.gitter.im/Join%20Chat.svg\n   :alt: Join the chat at https://gitter.im/tornadoweb/tornado\n   :target: https://gitter.im/tornadoweb/tornado?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge\n\n`Tornado \u003chttp://www.tornadoweb.org\u003e`_ is a Python web framework and\nasynchronous networking library, originally developed at `FriendFeed\n\u003chttp://friendfeed.com\u003e`_.  By using non-blocking network I/O, Tornado\ncan scale to tens of thousands of open connections, making it ideal for\n`long polling \u003chttp://en.wikipedia.org/wiki/Push_technology#Long_Polling\u003e`_,\n`WebSockets \u003chttp://en.wikipedia.org/wiki/WebSocket\u003e`_, 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\"/\", 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://github.com/tornadoweb/tornado/tree/stable/demos/chat\u003e`_.\n\nDocumentation\n-------------\n\nDocumentation and links to additional resources are available at\nhttps://www.tornadoweb.org\n","funding_links":[],"categories":["Python","Web Frameworks","Web框架","\u003ca name=\"websocket_library_vulnerabilities\"\u003e\u003c/a\u003eWebSocket Library Vulnerabilities","Python (1887)","Back-End Development","Authentication and OAuth","📚 فهرست","\u003ca name=\"Python\"\u003e\u003c/a\u003ePython"],"sub_categories":["Asynchronous","وب و توسعه وب"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftornadoweb%2Ftornado","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftornadoweb%2Ftornado","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftornadoweb%2Ftornado/lists"}