Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save DawnyWu/39f7cb8664e7a29f68c00b187ac598de to your computer and use it in GitHub Desktop.
Save DawnyWu/39f7cb8664e7a29f68c00b187ac598de 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