Live data from Hacker News

Iterating Faster with PDB and Flask

blog.kyri.com

1–4 of 4 posts

Re: Iterating Faster with PDB and Flask

#2
Maybe I'm missing something really obvious, but I don't understand where Flask fits into the picture. The article seems to introduce the first few steps of how you can debug any Python with pdb, not just Flask applications.

Re: Iterating Faster with PDB and Flask

#4
Try "pudb" instead of "pdb" if you want a fullscreen debugger.

http://pypi.python.org/pypi/pudb

Also, agreed with tomlu -- this will work for any python app (as long as it doesn't do strange things to stdout -- nose and daemons are probably the most common examples of things that do change stdout).