{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Back to the main [Index](../Index.ipynb)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Embedding IPython Into Other Applications" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The architecture of IPython is built with reusable components. These components include:\n", "\n", "* The configuration system for processing command line arguments and configuration files\n", "* The IPython `InteractiveShell` object that provides the core interactive features across the entire code base\n", "* The IPython kernel, which provides the capabilities of the `InteractiveShell` object over a ZeroMQ/JSON based message protocol to various frontends\n", "* The IPython frontends (Notebook, Qt Console, Console, Terminal)\n", "\n", "These components can be embedded into other applications." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Tutorials" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Coming soon." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Examples" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Coming soon." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Non-notebook examples" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This directory also contains examples that are regular Python (`.py`) files." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "embed_class_long.py
" ], "text/plain": [ "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Embedding/embed_class_long.py" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "embed_class_short.py
" ], "text/plain": [ "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Embedding/embed_class_short.py" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "embed_function.py
" ], "text/plain": [ "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Embedding/embed_function.py" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "inprocess_qtconsole.py
" ], "text/plain": [ "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Embedding/inprocess_qtconsole.py" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "inprocess_terminal.py
" ], "text/plain": [ "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Embedding/inprocess_terminal.py" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "internal_ipkernel.py
" ], "text/plain": [ "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Embedding/internal_ipkernel.py" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "ipkernel_qtapp.py
" ], "text/plain": [ "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Embedding/ipkernel_qtapp.py" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "ipkernel_wxapp.py
" ], "text/plain": [ "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Embedding/ipkernel_wxapp.py" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "%run ../utils/list_pyfiles.ipy" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.4.2" } }, "nbformat": 4, "nbformat_minor": 0 }