Paul Eipper

Results 92 comments of Paul Eipper

I like the idea of a parameter, so I can define a debug var and the app launches in auto-reload, no debug var and it runs without it.

Thanks for reviewing it! I was already pending towards defining it as a decorator, makes sense. Turning those methods into simple instance attributes is better. I think I'll override `__init__`...

I believe I addressed your points with these commits, although I didn't test the code thoroughly after the refactoring.

This branch also normalizes the WSGI request headers to match the original field names (uncgi them), so there should be no difference anymore when handling headers passed from Mongrel2 or...

I agree, master should be stable.

I don't think all handlers will use this property, so you'll be trading access cost for some handlers vs initialization cost for all handlers. It could be memoized, but I...

Memory impact: ![screen shot 2016-02-18 at 13 43 27](https://cloud.githubusercontent.com/assets/52256/13148746/bbf18196-d645-11e5-8696-e3733e039792.png)

Initialization calls impact: Before net.py: http://vmprof.com/#/0a0e3965f9eb8c0f89efcf67095e6960 After net.py: http://vmprof.com/#/ed6458cf55dcc3b0bfc69566f53db5e6

Would be great to integrate Redash with Jupyter: have the query result be a cell input, and export cells as graphs for the dashboard.

**Question**: How to enable the Python Query Runner on the Docker release? **Answer**: Edit `docker-compose.production.yml` and set in the `environment:` section: ``` REDASH_ADDITIONAL_QUERY_RUNNERS: "redash.query_runner.python" ``` PS: fixed the link https://github.com/getredash/redash/issues/2078...