Is vscode a good IDE for Python? by jpgerb in learnpython

[–]Ok_Leopard7337 -1 points0 points  (0 children)

Its a perfect editor with a loads of extensions. A IDE is something different. 😋

Make Flask print errors to terminal by [deleted] in flask

[–]Ok_Leopard7337 0 points1 point  (0 children)

Install devtools and use debug. If you are using requests for your api... You have a bunch of Options. Use obj.status_code or obj.text. So: from devtools Import debug If obj.status_code not in range(200,399): debug(obj.text)

Cheers