Posts Tagged ‘IPython help’

Run programs in the background in IPython

Sunday, December 2nd, 2007

You can start another thread in IPython to run a program in the background. (more…)

Debug and optimize your code in IPython

Sunday, December 2nd, 2007

One great thing about Python is the interactive debugger, which lets you inspect the value of variables at the point an error occurred. Of course, IPython integrates nicely with the Python debugger and makes debugging code a cinch. (more…)

Edit your code in IPython

Sunday, December 2nd, 2007

IPython makes it easy to edit source code, or create new scripts based on a couple of lines in your history, or paste examples from the web. (more…)

System commands from IPython

Sunday, December 2nd, 2007

You can make use of your Python skills by interacting with system commands directly for things like file renaming, directory restructuring, or calling any arbitrary system command from within IPython. Here are some ways to do that. (more…)

Shortcuts in IPython

Sunday, December 2nd, 2007

For the pathologically lazy, there are some shortcuts in IPython to save you from typing often-used commands.
(more…)

Running a program in IPython

Sunday, December 2nd, 2007

Running programs or scripts in IPython is easy, and here are the commands to use. (more…)

Directory navigation in IPython

Sunday, December 2nd, 2007

A reference table of commands to use when navigating directories in IPython. (more…)

Getting help in IPython

Sunday, December 2nd, 2007

IPython has an in-depth integrated help system. You can get help on IPython’s magic functions, view documentation from a single function, check out syntax-highlighted source code, or enter the Python interactive help system. Here’s a list of the commands to use. (more…)