Iwan LD
Iwan LD

Reputation: 342

Is there a clever way to debug Python code, when writing in Atom?

I recently switched from Eclipse/PyDev to Atom. One downside is that copypasting

import pdb
pdb.set_trace()

and aligning it with indentaion is a turnoff (which slows me down in different ways as it makes me use a lot of unnecessary logging which clutters things in different ways).

Is there any clever way to set breakpoints? Maybe something web-based like node-inspector to easily use it on remote machines? Maybe an Atom package? Maybe a macro?

Upvotes: 1

Views: 2748

Answers (1)

bitraten
bitraten

Reputation: 26

There is an atom package called python-debugger, which can be used for debugging in python.

Upvotes: 1

Related Questions