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

learn more… | top users | synonyms

0
votes
1answer
20 views

How to logging with timed rotate file handler in Tornado?

I've asked a question (how to manage nohup.out file in Tornado) about how to handle nohup.out file automatically when running a Tornado web service. And I decided to use the logging module of Tornado ...
1
vote
1answer
24 views

how to give a name to downloaded file with async tornado client

i have some python tornado code that i use to get files async from tornado import ioloop , httpclient def get_file(url): http_client = httpclient.AsyncHTTPClient() http_client.fetch(url,done) ...
0
votes
0answers
40 views

How to use Redis to manage connections for tornado websocket

I have a Tornado server with Tornadio2 handling the WebSocket and TornadoRedis by which I publish realtime messages to the clients (code was merged from several examples). redis_client = ...
2
votes
0answers
18 views

Extending tornado.gen.Task

Here's the interesting bits of a stupid websocket clock: class StupidClock(websocket.WebSocketHandler): clients = {} @web.asynchronous @gen.coroutine def open(self): ...
0
votes
1answer
34 views

python tornado get request url

Here is my code: class MainHandler(tornado.web.RequestHandler): def get(self): self.write(self.request.url) def main(): settings = {"template_path": "html","static_path": "static"} ...
0
votes
0answers
24 views

how do i allow header “Accept-Ranges” in nginx?

I have an app working from localhost:8888 using tornado, and this is the headers i'v set: def set_default_headers(self): self.add_header("Access-Control-Allow-Origin", "*") ...
0
votes
0answers
75 views

Node.js/ejabberd/Tornado comparison under millions of open connections [closed]

We are planning to build a full-fledged chatting application (1 ot 1, group chats, 1 to 1 voice chat, group voice chats) to be used by millions of users, and we are comparing ejabberd, Node.js, and ...
2
votes
3answers
46 views

How to manage nohup.out file in Tornado?

I built a web service using tornado and it serves days and nights. I used the command to start my service: nohup python my_service.py & The service log is able to write to nohup.out. However, ...
1
vote
0answers
32 views

Accessing web request globally in Tornado

I need to be able to access the currently executing web request in Tornado deep within my application without passing it down through all of my methods. When the request is first received I want to ...
1
vote
2answers
39 views

Django user in tornado

I have been using the code below to get the django user in tornado: from django.conf import settings import django.contrib.auth import django.utils.importlib import tornado from tornado.options ...
1
vote
0answers
36 views

a good way to use tornado with zeromq

I'm trying to achieve a link between tornado and zmq asynchronously. i've manage to code something that works like that : sub=context.socket(zmq.SUB) class market(RequestHandler): @asynchronous ...
0
votes
1answer
29 views

global name 'self' is not defined in Tornado [closed]

I'm now reading a O'reilly's book "Introduction to Tornado" and the first example the author writes is as follows (hello.py): import tornado.httpserver import tornado.ioloop import tornado.options ...
6
votes
2answers
108 views

How to write a web proxy in Python

I'm trying to write a web proxy in python. The goal is to visit a url like: http://proxyurl/http://anothersite.com/ and see he contents of http://anothersite.com just like you would normally. I've ...
1
vote
0answers
23 views

Using Django ORM inside Tornado, “syncdb” doesn't work

I'm using Django ORM inside Tornado, and everything is going well except that "syncdb" doesn't work. So this is my directory structure: APP_NAME/ APP_NAME/ models.py settings.py ...
1
vote
1answer
87 views

Web Proxy like Optimizely [closed]

I'm trying to write a proxy like Optimizely. If you go to http://optimizely.com you can try Optimizely on any site. Here's an example: https://www.optimizely.com/edit#url=espn.com. I've dissected the ...
0
votes
1answer
29 views

OAuth in pop-up with Tornado Auth TwitterMixin

Is it possible to do the Tornado Oauth authenticate_redirect() in a pop-up window, and return to main window by closing pop-up when authentication is done? I would like to implement this, but it ...
0
votes
1answer
31 views

Tornado webserver and Ember.js

I have been unsuccessful in trying to use ember.js with Tornado web server because both tornado template engine and ember use the handle bars (squiggly brackets) {{ and }} and when you try to use ...
4
votes
1answer
300 views

How to make SQLAlchemy in Tornado to be async?

How to make SQLAlchemy in Tornado to be async ? I found example for MongoDB on async mongo example but I couldn't find anything like motor for SQLAlchemy. Does anyone know how to make SQLAlchemy ...
-1
votes
1answer
28 views

Is Tornado using multiprocessing internally?

Is Tornado using the multiprocessing module internally? Considering that Tornado, being a web server, needs to handle lots of concurrent requests, I think it makes sense for Tornado to use ...
0
votes
2answers
52 views

Confused about making Django Asynchronous (RealTime)

Better Technology to Make a Django project Asynchronous (RealTime) ( Tornado with django ORM or Node.js ), And is there any need to use another Package called Celery as another Asynchronous tasks ...
0
votes
1answer
31 views

Tornado request.body

My Tornado application accepts POST data through http body request In my handler I am able to get the request def post(self): data = self.request.body The data I am getting is in the from of ...
0
votes
1answer
28 views

Tornado and WTForms

I am using WTForms for the first time. Using WTForms to validate POST requests in Tornado Below is my forms forms.py class UserForm(Form): user = TextField('user', [validators.Length(min=23, ...
2
votes
2answers
60 views

How does long-polling work in Tornado?

In Tornado's chat demo, it has a method like this: @tornado.web.asynchronous def post(self): cursor = self.get_argument("cursor", None) ...
1
vote
0answers
25 views

Is there easy way to change from sync to async way of fetching results from database in Tornado?

At the moment I don't have async code. My Tornado cost looks like class EmployeeHandler(tornado.web.RequestHandler): '''Returns all users which satisfy conditions''' def post(self): ...
2
votes
0answers
25 views

How to use Tornado with APScheduler?

I am running python's apscheduler and periodically want to do some work POST-ing to some http resources which will involve using tornado's AsyncHttpClient as a scheduled job. Each job will do several ...
2
votes
2answers
51 views

How to move db request (which uses yield) in an other function?

I'm playing with tornado and mongodb, with the asynchronous driver motor. When working with callbacks everything's fine. Then I discovered the possibility to use motor.Op or tornado.gen.Task to ...
1
vote
0answers
73 views

Broadcasting message to all clients using Pika + sockjs-tornado

I'm new to realtime apps based on WebSockets, and stucked at one point. My app has following components: Simple Python script which is fired when some generic event occurs. It receives data and ...
1
vote
1answer
47 views

Full url from tornado request python with hashes

Hello got a Tornado request. http://localhost:8000/blah/blah#myparameter=value1 in my get method i am trying to extract myparameter value. get_argument does not see it. Why whould it? nothing in ...
0
votes
1answer
45 views

WebService with Tornado.web and Authentication. Do you have Example?

I'm brand new in Tornado.web. I just write an webservice in python with tornado. He is consumed by an desktop application. I want to require that the application communicates only after being ...
1
vote
0answers
10 views

Tornado WebSocket closes once a minute

I'm using Closure client-side and Tornado server side. I create a socket: this.socket = goog.net.WebSocket(true) and then open it: this.socket.open(theSocketUrl) Every works fine including ...
0
votes
1answer
44 views

How does supervisord and nginx handle what tornado port is used?

I am using supervisord to spool 2 instances of tornado on different ports and I use nginx as a reverse proxy to these ports. I have noticed that all traffic is directing to only one port. How does ...
4
votes
1answer
127 views

python frameworks for a real time website

I'm trying to learn web programming in python, and have the following project in mind: mine the yahoo finance api for instrument data, and display it in real time, as well as plot charts based on ...
8
votes
1answer
209 views

Is JSON Hijacking still an issue in modern browsers?

I am using backbone.js and the Tornado web server. The standard behavior for receiving collection data in backbone is to send as a JSON Array. On the other hand, Tornado's standard behavior is to ...
0
votes
1answer
45 views

How do I ensure that Tornado will only open a websocket with authenticated users?

The Tornado documentation does not comment on any use of the tornado.web.authenticated decorator for use with a WebSocketHandler. I only want to grant a websocket connection to authenticated users. ...
1
vote
0answers
43 views

facebook like notifications with tornado, mongodb

I have an app that has facebook login. The users have an action which affects other users. I'd like the affected users to be notified in real time, if they are logged in, otherwise they should see the ...
0
votes
1answer
34 views

Tornado does not handle node-http-proxy websockes on linux

If I start a server python wsserver.py and then run python wsclient.py --host localhost --port 8888 the tornado server and client behave as expected. However, if I start up a proxy server as well: ...
1
vote
1answer
36 views

Tornado - 'Global variables' in tornado?

class MainHandler(BaseHandler): @tornado.web.authenticated def get(self): self.render("index.html", messages=MessageMixin.cache) So the MainHandler does not pass request or ...
0
votes
1answer
17 views

tornado - What should I do to execute RequestHandler.write and then sleep for a second while the written content stays visible?

try: username = self.get_argument('username') except: self.write('Username empty') time.sleep(1) self.redirect('/auth/login') I want Username empty to be ...
1
vote
1answer
56 views

What is the difference between json.dumps/loads and tornado.escape.json_encode/json_decode?

It seems they are behaving exactly the same way. >>> data [('a', 'b'), {'a': 1, 'b': 2}, ['a', 'b'], 'a', 'b'] >>> json.dumps(data) '[["a", "b"], {"a": 1, "b": 2}, ["a", "b"], "a", ...
1
vote
0answers
55 views

Tornado testing async requests

I need an advice regards testing tornado app. For now I just playing with demo chat application, but it looks like real-life problem. In the handler I have: class ...
0
votes
2answers
54 views

Tornado: Create full URL from partial URL

I was wondering if there's a function or... something in Tornado that would turn a partial URL into a complete URI. Let's say I have a CSS file in /static/css/thingy.css and my the server is ...
0
votes
0answers
18 views

Tornado app file organization

Whats the best practice for complex template structure in a tornado app? We will have about 100 FAQ's that will each be on their own page.. Is there a better way than having 100 static html files (in ...
0
votes
1answer
54 views

Python Tornado: Is this secure?

I'm a bit of a noob here, so I'm trying to figure out some basics about web security. I have a very basic Tornado server running, and while it's only for use by me, I want to make sure I'm not making ...
0
votes
0answers
32 views

Logout in Tornado doesn't work

I wrote the login and logout handlers in Tornado, using for the login the Google external service. The handlers are the following: ...
0
votes
3answers
50 views

How to kill muitiple tornado processes at one time?

I used nohup python *.py & to run my tornado web service, and 8 processes started. . However, it is really annoying killing my tornado processes. I have to ues kill -3 pid 8 times to finally ...
0
votes
1answer
27 views

What's the point of tornado.locale.Locale.translate?

Documentation: http://www.tornadoweb.org/en/stable/locale.html?highlight=translate#tornado.locale.Locale.translate I saw an submit button in some html file: <input type="submit" value="{{ ...
2
votes
1answer
162 views

Tornado socket.error on ARM

I'm trying to run a small python webapp on a RasPi using the Tornado server, but whenever I try to start it, I get the error Traceback (most recent call last): File "main.py", line 78, in ...
-4
votes
2answers
66 views

How to defer the execution of a python task in tornado?

I've got an internet site running on tornado, with video features (convert, cut, merge). The video traitement is quite long, so i want to move it to another python process, and keep the tornado ...
2
votes
1answer
70 views

How to create multiple add_callback in tornado?

I'm trying to add multiple callbacks in tornado main loop. But when I run this code: def task(num): print 'task %s' % num if __name__ == '__main__': for i in range(1,5): ...
3
votes
1answer
138 views

Python/Tornado - compressing static files

For django projects there is an awesome tool called django-compressor. It combines all js or css files under compress template tag into single cached file, like this: {% load compress %} {% compress ...

1 2 3 4 5 19