napi is an abstract syntax tree transformer to simplify NumPy array operations. In IPython, for example, you can use the following magic:
In [1]: import napi
In [2]: %napi
napi ast transformer is turned ON
to enable evaluation of the following expression:
In [3] from numpy import *
In [4] 0 <= arange(6) < 6 and True
Out[4]: array([ True, True, True, True, True, True], dtype=bool)
napi works with Python 2.7, 3.2 and later.
$ pip install -U napi
napi is available under MIT License.