python-tornado
Port variant v11
Summary Web framework and asynchronous networking (3.11)
BROKEN
Package version 6.4.1
Homepage http://www.tornadoweb.org/
Keywords python
Maintainer Python Automaton
License Not yet specified
Other variants v12
Ravenports Buildsheet | History
Ravensource Port Directory | History
Last modified 06 JUN 2024, 00:12:24 UTC
Port created 28 SEP 2017, 20:31:25 UTC
Subpackage Descriptions
single Tornado Web Server ================== [Tornado] is a Python web framework and asynchronous networking library, originally developed at [FriendFeed ]. By using non-blocking network I/O, Tornado can scale to tens of thousands of open connections, making it ideal for [long polling], [WebSockets], and other applications that require a long-lived connection to each user. Hello, world ------------ Here is a simple "Hello, world" example web app for Tornado: .. code-block:: python import asyncio import tornado class MainHandler(tornado.web.RequestHandler): def get(self): self.write("Hello, world") def make_app(): return tornado.web.Application([ (r"/", MainHandler), ]) async def main(): app = make_app() app.listen(8888) await asyncio.Event().wait() if __name__ == "__main__": asyncio.run(main()) This example does not use any of Tornado's asynchronous features; for that see this [simple chat room ]. Documentation ------------- Documentation and links to additional resources are available at https://www.tornadoweb.org
Configuration Switches (platform-specific settings discarded)
PY311 ON Build using Python 3.11 PY312 OFF Build using Python 3.12
Package Dependencies by Type
Build (only) python-setuptools:single:v11
autoselect-python:single:std
Build and Runtime python311:single:std
Download groups
main mirror://PYPI/t/tornado
Distribution File Information
92d3ab53183d8c50f8204a51e6f91d18a15d5ef261e84d452800d4ff6fc504e9 500623 tornado-6.4.1.tar.gz
Ports that require python-tornado:v11
No other ports depend on this one.