Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fidelisrafael/afbc0751bfe075191170a58782d9fa45 to your computer and use it in GitHub Desktop.
Save fidelisrafael/afbc0751bfe075191170a58782d9fa45 to your computer and use it in GitHub Desktop.

Basic

import code; code.interact(local=locals())

Advanced

IPython with embed()

Install it with:

pip install ipython

Use it like so:

from IPython import embed

# Misc code

embed() # this will drop us into IPython

# Misc code

Although you can use it directly as well:

import IPython

x = "foo"
print(x)

IPython.embed()

x = "bar"
print(x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment