Tagged Questions

IPython is a feature-rich interactive shell for Python

learn more… | top users | synonyms

17
votes
5answers
7k views

Emacs 23 and iPython

Is there anyone out there using iPython with emacs 23? The documents on the emacs wiki are a bit of a muddle and I would be interested in hearing from anyone using emacs for Python development. Do you ...
15
votes
3answers
1k views

Autoreload of modules in iPython

Is there a way to have iPython automatically reload all changed code? Either before each line is executed in the shell or failing that when it is specifically requested to. I'm doing a lot of ...
14
votes
1answer
645 views

R equivalent of python “_”?

Python has an identifier _ that allows for storing the result of the last evaluation which makes it great for speeding up data exploration and introspection. In [1]: 43 * 2 Out[1]: 86 In [2]: _ + 1 ...
14
votes
5answers
1k views

What is your favorite IPython feature?

I've been learning (and enjoying learning!) Python via the IPython interactive shell recently... What's your favorite feature in IPython? Are there any tips and tricks you've picked up that other ...
12
votes
6answers
2k views

Is it possible to go into ipython from code?

For my debugging needs,pdb is pretty good. However, it would be MUCH cooler ( and helpful ) if I could go into ipython. Is this thing possible?
11
votes
2answers
2k views

ipython or bpython?

I really like ipython but one my coworkers showed me bpython and I liked it a lot [1]. Is there any advantages of ipython that doesn't exists in bpython? [1] The only thing I didn't like is the fact ...
11
votes
5answers
2k views

How to embed a Python interpreter in a PyQT widget

I want to be able to bring up an interactive python terminal from my python application. Some, but not all, variables in my program needs to be exposed to the interpreter. Currently I use a ...
11
votes
4answers
3k views

Advice regarding IPython + MacVim Workflow

I've just found IPython and I can report that I'm in deep love. And the affection was immediate. I think this affair will turn into something lasting, like the one I have with screen. Ipython and ...
10
votes
4answers
1k views

Cannot make cProfile work in IPython

I'm missing something very basic. class C: def __init__(self): self.N = 100 pass def f(self, param): print 'C.f -- param' for k in xrange(param): ...
10
votes
5answers
5k views

Installing ipython with readline on the mac

I am using ipython on Mac OS 10.5 with python 2.5.1 (I would actually like to use ipython for 2.6.1, but it doesn't seem to be available?) I installed ipython via easy_install. It works but is ...
9
votes
1answer
351 views

notepad++ run selected code in python console seamlessly

I often use R to analyze data, and really enjoy Notepad++ along with NppToR. Especially, NppToR enables to run a part of code without much hassle. I just highlight a snippet of R code to run and press ...
9
votes
2answers
598 views

What are the best iPython tutorials?

I've been using iPython for a few months and I'm always learning new features. It seems that many of the features are hidden. What tutorials would you recommend to learn more iPython features?
8
votes
7answers
4k views

IPython workflow (edit, run)

Is there a GUI for IPython that allows me to open/run/edit Python files? My way of working in IDLE is to have two windows open: the shell and a .py file. I edit the .py file, run it, and interact with ...
8
votes
2answers
3k views

How do I use IPython as my Emacs Python interpreter?

I'm running Emacs 22.1.1 and IPython 0.9.1 on OS X and I'd like to be able to run lines/methods/snippets of Python code from my current buffer on demand inside an IPython interpreter. What do I need ...
7
votes
3answers
872 views

Are there any iPython-like shells for Ruby or Rails?

I love iPython and am learning RoR along with some libraries like Mechanize and I'd like to be able to easily see what I'm working with in terms of introspection. I would like to be able to type "." + ...
7
votes
3answers
21k views

What is causing ImportError: No module named pkg_resources after upgrade of Python on os X?

I just updated Python to 2.6.4 on my Mac. I installed from the dmg package. The binary did not seem to correctly set my Python path, so I added '/usr/local/lib/python2.6/site-packages' in ...
7
votes
3answers
694 views

IPython OS X: Up arrow gives “^[[A”

Whenever I hit the up arrow in IPython, instead of getting history, I get this set of characters "^[[A" (not including the quotes). Hitting the down arrow gives "^[[B", and tab completion doesn't ...
6
votes
5answers
397 views

Help me understand why Unicode only works sometimes with Python

Here's a little program: #!/usr/bin/env python # -*- encoding: utf-8 -*- print('abcd kΩ ☠ °C √Hz µF ü ☃ ♥') print(u'abcd kΩ ☠ °C √Hz µF ü ☃ ♥') On Ubuntu, Gnome terminal, IPython does what I ...
6
votes
3answers
1k views

Reloading submodules in Ipython

Currently I am working on a python project that contains sub modules and uses numpy/scipy. Ipython is used as interactive console. Unfortunately I am not very happy with workflow that I am using right ...
6
votes
2answers
161 views

iPython - “broken” shell/terminal after realoading Django

I'm embedding iPython shell in a Django script (with development server, e.g. runserver at localhost) like this: ... from IPython.Shell import IPShellEmbed ipshell = IPShellEmbed() ipshell() ... ...
6
votes
3answers
286 views

Prevent Python from caching the imported modules

While developing a largeish project (split in several files and folders) in Python with IPython, I run into the trouble of cached imported modules. The problem is that instructions import module only ...
6
votes
3answers
5k views

How to install iPython on Snow Leopard

Does iPython work on Mac OS X 10.6.1 Snow Leopard? I'm python noob, how can I install iPython on my Mac? Links? suggestions? Thanks
6
votes
5answers
259 views

Strange python behaviour

I was bored and playing around with the ipython console and came upon the following behaviour I don't really understand In [1]: 2**2 Out[1]: 4 In [2]: 2**2**2 Out[2]: 16 In [3]: 2**2**2**2 Out[3]: ...
6
votes
2answers
1k views

How to force iPython to use an older version of Python?

I am running an Ubuntu 8.10, using Python 2.5 out of the box. This is fine from the system point of view, but I need Python2.4 since I dev on Zope / Plone. Well, installing python2.4 is no challenge, ...
5
votes
2answers
81 views

Close all open files in ipython

Sometimes when using ipython you might hit an exception in a function which has opened a file in write mode. This means that the next time you run the function you get a value error, ValueError: ...
5
votes
2answers
1k views

pip installing ipython with readline on OSX Lion

What is required to get ipython fully functional on OSX Lion? I'm trying to get ipython with readline working and having no success. My approach: (inside a virtual environment) pip install ...
5
votes
3answers
205 views

ipython and fork()

I am planning a Python script that'll use os.fork() to create a bunch of child processes to perform some computations. The parent process will block until the children terminate. The twist is that I ...
5
votes
2answers
884 views

Ambiguous tab completion not working in iPython on Windows

I am running IPython on Windows 7 x64 with pyreadline installed. If I start a new session and type: import numpy nu<TAB> Then nu autocompletes to numpy. However, if I start a new session ...
5
votes
2answers
829 views

How to get unpickling to work with iPython?

I'm trying to load pickled objects in iPython. The error I'm getting is: AttributeError: 'FakeModule' object has no attribute 'World' Anybody know how to get it to work, or at least a ...
5
votes
5answers
2k views

A Python IDE with Debugging and iPython Integration?

Does anyone know of a python IDE that has iPython as the interpreter? Using the standard interpreter just drives me nuts, as I've just grown to love using iPython and all the features it provides. ...
5
votes
2answers
1k views

IPython tab completion not working

Tab completion on IPython seems not to be working. For example, import numpy numpy.<tab> simply adds a tab. import numpy num<tab> just adds a tab, too. Could you please suggest some ...
5
votes
4answers
250 views

Good way to edit the previous defined class in ipython

I am wondering a good way to follow if i would like to redefine the members of a previous defined class in ipython. say : I have defined a class intro like below, and later i want to redefine part of ...
5
votes
2answers
199 views

How do I embed IPython with working generator expressions?

Certain list comprehensions don't work properly when I embed IPython 0.10 as per the instructions. What's going on with my global namespace? $ python >>> import IPython.Shell >>> ...
5
votes
4answers
979 views

How to run django shell from Emacs?

I'd like to be able to run ./manage.py shell in an Emacs buffer, with all the nice stuff that you get from ipython, like magic commands and autocompletion. Ideally I would also like to be able ...
5
votes
2answers
877 views

how to integrate ZSH and (i)python?

I have been in love with zsh for a long time, and more recently I have been discovering the advantages of the ipython interactive interpreter over python itself. Being able to cd, to ls, to run or to ...
4
votes
4answers
77 views

C-a to go to the first character in emacs using ipython-mode

C-a brings me back to the beginning of the line. But I would like C-a to bring me back to the beginning of the text when writing python code. if(test) : print 'this is a test' # here i want to ...
4
votes
2answers
292 views

IPython iterate main loop manually?

Can i somehow instance ipython (or even better, ipython-qtconsole) and step trough its's (IPython's) main loop manually? I want to edit panda3d programs on the fly. EDIT1: Here is code sample which ...
4
votes
1answer
112 views

How can I interrupt the IPython interpreter as opened in emacs?

Let's say I accidentally evaluate an enormous variable--a list with a ba-jillion elements, or whatever. As they scroll down my screen and my computer crawls to a halt, is there a good way to ...
4
votes
2answers
183 views

ipython equivalent for javascript/coffeescript for node.js?

More specifically, is there a REPL that has (more) colorful output, pretty printing, tab completion and the other goodies that ipython has for node.js javascript/coffeescript?
4
votes
0answers
220 views

Remove items from iPython's history [closed]

Possible Duplicate: raw_input without leaving a history in readline I'm working on a simple interactive application that relies on iPython. I'm running into a problem where prompting a ...
4
votes
4answers
192 views

“Groovy Console” for Python?

I often use ipython (or the regular python shell) to test python code snippets while coding, and it's been very useful. One shortcoming of this, though, is that if I want to test a multi-line segment ...
4
votes
3answers
957 views

IPython doesn't find the Shell.IPShell class

After installing Django, I followed the tutorial Playing with the API. When I run the following command. python manage.py shell I got this error message. File ...
4
votes
2answers
828 views

How to reload modules in django shell?

I am working with Django and use Django shell all the time. The annoying part is that while the Django server reloads on code changes, the shell does not, so every time I make a change to a method I ...
4
votes
3answers
609 views

Search inside ipython history

ipython's %his command outputs recent commands entered by the user. Is it possible to search within these commands? Something like this: [c for c in %history if c.startswith('plot')] EDIT I am not ...
4
votes
1answer
536 views

How to reload Django models without losing my locals in an interactive session?

I'm doing some research with an interactive shell and using a Django app (shell_plus) for storing data and browsing it using the convenient admin. Occasionally I add or change some of the app models, ...
4
votes
3answers
987 views

Weird problem with input encoding in IPython

I'm running python 2.6 with latest IPython on Windows XP SP3, and I have two questions. First one of my problems is, when under IPython, I cannot input Unicode strings directly, and, as a result, ...
4
votes
1answer
557 views

How to use IPython with IronPython

What is the procedure to get IPython to use IronPython as it's Python interpreter? I know there were previously some issues: ...
4
votes
3answers
563 views

exit from ipython

I like IPython a lot for working with the python interpreter. However, I continually find myself typing exit to exit, and get prompted "Type exit() to exit." I know I can type Ctrl-D to exit, but is ...
4
votes
3answers
680 views

Line-wrapping problems with IPython shell

If I have run a long line in IPython, and try and recall it (using the up-arrow) or backspace beyond the start of the current line, it displays incorrectly (all smushed into one line) For example, in ...
4
votes
3answers
1k views

How do I make IPython organize tab completion possibilities by class?

When an object has hundreds of methods, tab completion is hard to use. More often than not the interesting methods are the ones defined or overridden by the inspected object's class and not its base ...

1 2 3 4 5 6