# Buildsheet autogenerated by ravenadm tool -- Do not edit. NAMEBASE= python-tornado VERSION= 5.0.2 KEYWORDS= python VARIANTS= py27 py35 py36 SDESC[py35]= Web framework and asynchronous networking (PY 35) SDESC[py36]= Web framework and asynchronous networking (PY 36) SDESC[py27]= Web framework and asynchronous networking (PY 27) HOMEPAGE= http://www.tornadoweb.org/ CONTACT= Python_Automaton[python@ironwolf.systems] DOWNLOAD_GROUPS= main SITES[main]= PYPI/t/tornado DISTFILE[1]= tornado-5.0.2.tar.gz:main DF_INDEX= 1 SPKGS[py35]= single SPKGS[py36]= single SPKGS[py27]= single OPTIONS_AVAILABLE= PY27 PY35 PY36 OPTIONS_STANDARD= none VOPTS[py35]= PY27=OFF PY35=ON PY36=OFF VOPTS[py36]= PY27=OFF PY35=OFF PY36=ON VOPTS[py27]= PY27=ON PY35=OFF PY36=OFF DISTNAME= tornado-5.0.2 GENERATED= yes [PY35].USES_ON= python:py35 [PY36].USES_ON= python:py36 [PY27].BUILDRUN_DEPENDS_ON= python-futures:single:py27 python-singledispatch:single:py27 python-backports_abc:single:py27 [PY27].USES_ON= python:py27 [FILE:1571:descriptions/desc.single] Tornado Web Server ================== .. image:: https://badges.gitter.im/Join%20Chat.svg :alt: Join the chat at https://gitter.im/tornadoweb/tornado :target: https://gitter.im/tornadoweb/tornado?utm_source=badge&utm_medium=badge&utm_ campaign=pr-badge&utm_content=badge `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 tornado.ioloop import tornado.web class MainHandler(tornado.web.RequestHandler): def get(self): self.write("Hello, world") def make_app(): return tornado.web.Application([ (r"/", MainHandler), ]) if __name__ == "__main__": app = make_app() app.listen(8888) tornado.ioloop.IOLoop.current().start() 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 http://www.tornadoweb.org [FILE:99:distinfo] 1b83d5c10550f2653380b4c77331d6f8850f287c4f67d7ce1e1c639d9222fbc7 506544 tornado-5.0.2.tar.gz