In [1]:
import sys
sys.version


Out[1]:
'3.4.3 |Anaconda 2.2.0 (32-bit)| (default, Mar  6 2015, 12:08:17) [MSC v.1600 32 bit (Intel)]'

In [2]:
%matplotlib inline
import matplotlib.pyplot as plt
import numpy as np
def plotnormal():
    return plt.plot(np.random.randn(1000), np.random.randn(1000), 'o', alpha=0.3)
plotnormal()


<matplotlib.figure.Figure at 0x35a88d0>
Out[2]:
[<matplotlib.lines.Line2D at 0x6e53750>]

Errors are shown in informative ways:


In [9]:
%run non_existent_file


ERROR: File `'non_existent_file.py'` not found.

In [12]:
x = 1
y = 4
z = y/(1-x)


---------------------------------------------------------------------------
ZeroDivisionError                         Traceback (most recent call last)
<ipython-input-12-dc39888fd1d2> in <module>()
      1 x = 1
      2 y = 4
----> 3 z = y/(1-x)

ZeroDivisionError: division by zero

In [15]:
ip = get_ipython()

In [1]:
%install_ext https://raw.github.com/anaderi/ipython-hierarchymagic/master/hierarchymagic.py


Installed hierarchymagic.py. To use it, type:
  %load_ext hierarchymagic

In [3]:
%load_ext hierarchymagic

In [4]:
%hierarchy get_ipython()


Auto-Complete Sadness (Issue #55)

Issue #55.

Autocomplete doesn't play nicely with long arrays containing long strings.


In [ ]: