Top "Tornado" questions

Tornado is a scalable web server and web framework for Python specializing in handling thousands of simultaneous connections and real-time services.

How to redirect on another page and pass parameter in url from table?

How to redirect on another page and pass parameter in url from table ? I've created in tornato template something like …

javascript jquery templates jquery-mobile tornado
When to use Tornado, when to use Twisted / Cyclone / GEvent / other

Which of these frameworks / libraries would be the best choise for building modern multiuser web application? I would love to …

python webserver twisted tornado gevent
Tornado URL query parameters

I've been playing around with Tornado, and I've written some code that doesn't seem very nice. I'm writing an app …

python tornado
How can I periodically execute a function with asyncio?

I'm migrating from tornado to asyncio, and I can't find the asyncio equivalent of tornado's PeriodicCallback. (A PeriodicCallback takes two …

python python-3.x tornado python-3.5 python-asyncio
Tornado request.body

My Tornado application accepts POST data through http body request In my handler I am able to get the request …

python python-2.7 tornado
How to serve static files from a different directory than the static path?

I am trying this: favicon_path = '/path/to/favicon.ico' settings = {'debug': True, 'static_path': os.path.join(PATH, …

python static tornado favicon
Why use Tornado and Flask together?

As far as I can tell Tornado is a server and a framework in one. It seems to me that …

python web webserver flask tornado
Jupyter Notebook with Python 3.8 - NotImplementedError

Upgraded recently to Python 3.8, and installed jupyter. However, when trying to run jupyter notebook getting the following error: File "c:\…

python windows jupyter-notebook tornado
How to use POST method in Tornado?

I'm trying to use Tornado to start a server and post a string to it. I've found lots of examples …

python post tornado
using Flask and Tornado together?

I am a big fan of Flask - in part because it is simple and in part because has a …

python wsgi nonblocking flask tornado