What's IPython?
http://ipython.org/ipython-doc/dev/overview.html Basically it's the Python terminal on steroids.
IPython gets $1.15M funding
11–20 of 95 posts
Re: IPython gets $1.15M funding
#12What's IPython?
ipython has a client/server model with multiple gui frontends including a qt one that lets you print out inline graphs and ipython notebook which lets you generate documents with code and data analysis/visualization. I believe the last part is what the grant is for.
Python has been used in scientific and statistical fields a lot lately and ipython notebook is quite useful for that.
Re: IPython gets $1.15M funding
#13Re: IPython gets $1.15M funding
#14Re: IPython gets $1.15M funding
#15Re: IPython gets $1.15M funding
#16IPython is extremely useful. I like the qtconsole feature but i find it less than perfect to install: 1. pip install ipython 2. install qt4 3. pip install pyside / qt4 bindings The better feature, for me anyway, is the notebook interface (it starts a local web server and gives you a rich web guy, somewhat like a Mathematica idea of interactive notebook editing with inline charting etc.) But, that's a whole other bunc…
(disclaimer, I work for Enthought, which sells EPD)
Re: IPython gets $1.15M funding
#17IPython notebook is actually one of the most interesting developments not just in the python world, but in computing generally. It's the first step towards the fully graphical shell on the internet that many of us have been looking for, whether or not we realize it. Being able to weave together text|markdown, tabular data (in almost any format you want) and images ( whether from matplotlib, raw captures, or synthetic…
I'm sure the iPython Notebook could be useful in my day to day Python/Django usage but I haven't figured out how yet.
Re: IPython gets $1.15M funding
#18I really wish there was an equivalent of IPython in Ruby; it's one of the tools I miss the most from python.
Re: IPython gets $1.15M funding
#19Re: IPython gets $1.15M funding
#20IPython notebook is actually one of the most interesting developments not just in the python world, but in computing generally. It's the first step towards the fully graphical shell on the internet that many of us have been looking for, whether or not we realize it. Being able to weave together text|markdown, tabular data (in almost any format you want) and images ( whether from matplotlib, raw captures, or synthetic…
I'm even wondering: if there was a way for notebooks to import each other, would I still bother with modules?