Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.
Go to file
MinRK 0b75124bb2 coerce kwarg keys to str
If handler regex is unicode, the keys of groupdict are unicode, but should be
str, as Python < 2.6.5 does not accept unicode keys in:

    _execute(*args, **kwargs)

Since they are for keyword args, they will be valid identifiers, and thus ascii.
2012-02-02 14:05:59 -08:00
demos Update websocket chat demo to work when not addressed as localhost. 2012-01-21 17:39:37 -08:00
maint Disable slow websocket performance tests by default. 2012-01-21 17:12:22 -08:00
tornado coerce kwarg keys to str 2012-02-02 14:05:59 -08:00
website Revert "Run the website in python2.7 mode" 2012-01-30 11:10:17 -08:00
.coveragerc Add .coveragerc for test coverage reporting. 2012-01-21 14:10:00 -08:00
.gitignore Check in a requirements file for the tools I use while working on tornado. 2012-01-21 14:35:21 -08:00
MANIFEST.in Add tests for static file functionality 2011-08-14 14:20:09 -07:00
README Update installation instructions in README. 2010-09-23 09:37:32 -07:00
setup.py Remove optional setuptools import. 2012-01-30 23:46:36 -08:00
tox.ini Major update to tornado.platform.twisted. 2012-01-16 23:30:41 -08:00

README

Tornado
=======
Tornado is an open source version of the scalable, non-blocking web server
and and tools that power FriendFeed. Documentation and downloads are
available at http://www.tornadoweb.org/

Tornado is licensed under the Apache Licence, Version 2.0
(http://www.apache.org/licenses/LICENSE-2.0.html).

Installation
============
To install:

    python setup.py build
    sudo python setup.py install

Tornado has been tested on Python 2.5 and 2.6. To use all of the features
of Tornado, you need to have PycURL and (for Python 2.5 only) simplejson
installed.

On Mac OS X 10.6, you can install the packages with:

    sudo easy_install pycurl

On Ubuntu Linux, you can install the packages with:

    # Python 2.6
    sudo apt-get install python-pycurl

    # Python 2.5
    sudo apt-get install python-dev python-pycurl python-simplejson