loongson/pypi/: tornado-5.1.1 metadata and description

Homepage Simple index Newer version available

Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.

author Facebook
author_email python-tornado@googlegroups.com
classifiers
  • License :: OSI Approved :: Apache Software License
  • Programming Language :: Python :: 2
  • Programming Language :: Python :: 2.7
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.4
  • Programming Language :: Python :: 3.5
  • Programming Language :: Python :: 3.6
  • Programming Language :: Python :: 3.7
  • Programming Language :: Python :: Implementation :: CPython
  • Programming Language :: Python :: Implementation :: PyPy
license http://www.apache.org/licenses/LICENSE-2.0
platform
  • UNKNOWN
requires_dist
  • futures
  • singledispatch
  • backports-abc (>=0.4)
requires_python >= 2.7, !=3.0.*, !=3.1.*, !=3.2.*, != 3.3.*

Because this project isn't in the mirror_whitelist, no releases from root/pypi are included.

File Tox results History
tornado-5.1.1-cp27-cp27mu-linux_loongarch64.whl
Size
451 KB
Type
Python Wheel
Python
2.7
tornado-5.1.1-cp36-cp36m-linux_loongarch64.whl
Size
452 KB
Type
Python Wheel
Python
3.6
  • Replaced 1 time(s)
  • Uploaded to loongson/pypi by loongson 2022-08-26 02:58:59
tornado-5.1.1-cp37-cp37m-linux_loongarch64.whl
Size
453 KB
Type
Python Wheel
Python
3.7
tornado-5.1.1-cp38-cp38-linux_loongarch64.whl
Size
452 KB
Type
Python Wheel
Python
3.8
  • Replaced 2 time(s)
  • Uploaded to loongson/pypi by loongson 2022-08-26 06:23:33
tornado-5.1.1-cp39-cp39-linux_loongarch64.whl
Size
452 KB
Type
Python Wheel
Python
3.9
  • Replaced 1 time(s)
  • Uploaded to loongson/pypi by loongson 2022-08-26 07:33:05
tornado-5.1.1.tar.gz
Size
516 KB
Type
Source
  • Replaced 3 time(s)
  • Uploaded to loongson/pypi by loongson 2022-08-26 07:33:07
Join the chat at https://gitter.im/tornadoweb/tornado

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:

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