##// END OF EJS Templates
Merge pull request #12346 from meeseeksmachine/auto-backport-of-pr-12305-on-7.x...
Merge pull request #12346 from meeseeksmachine/auto-backport-of-pr-12305-on-7.x Backport PR #12305 on branch 7.x (Fix ipython#11508: check if line_buffer is None)

File last commit:

r20278:8f4dcac7
r25771:0cf8ac5a merge
Show More
Index.ipynb
210 lines | 5.0 KiB | text/plain | TextLexer
No description has been provided for this image

Back to the main Index

Embedding IPython Into Other Applications

The architecture of IPython is built with reusable components. These components include:

  • The configuration system for processing command line arguments and configuration files
  • The IPython InteractiveShell object that provides the core interactive features across the entire code base
  • The IPython kernel, which provides the capabilities of the InteractiveShell object over a ZeroMQ/JSON based message protocol to various frontends
  • The IPython frontends (Notebook, Qt Console, Console, Terminal)

These components can be embedded into other applications.

Tutorials

Coming soon.

Examples

Coming soon.

Non-notebook examples

This directory also contains examples that are regular Python (.py) files.