python-tornado
Port variant v13
Summary Web framework and asynchronous networking (3.13)
BROKEN
Package version 6.4.2
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 22 NOV 2024, 12:26:16 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)
PY312 OFF Build using Python 3.12 PY313 ON Build using Python 3.13
Package Dependencies by Type
Build (only) python313:dev:std
python-setuptools:single:v13
autoselect-python:single:std
Build and Runtime python313:primary:std
Download groups
main mirror://PYPI/t/tornado
Distribution File Information
92bad5b4746e9879fd7bf1eb21dce4e3fc5128d71601f80005afa39237ad620b 501135 python-src/tornado-6.4.2.tar.gz
Ports that require python-tornado:v13
No other ports depend on this one.