Show More
@@ -1,7 +1,7 b'' | |||||
1 | { |
|
1 | { | |
2 | "metadata": { |
|
2 | "metadata": { | |
3 | "name": "", |
|
3 | "name": "", | |
4 | "signature": "sha256:9081cd113ba2044ff4184aca7ea71d8b9b8aa374d44ebc893e9d00b5bbd91217" |
|
4 | "signature": "sha256:2fc11a62b83396569f64bfde2516a0219a62108a64f920dedb7217a63d67a9bc" | |
5 | }, |
|
5 | }, | |
6 | "nbformat": 3, |
|
6 | "nbformat": 3, | |
7 | "nbformat_minor": 0, |
|
7 | "nbformat_minor": 0, | |
@@ -46,12 +46,76 b'' | |||||
46 | ] |
|
46 | ] | |
47 | }, |
|
47 | }, | |
48 | { |
|
48 | { | |
|
49 | "cell_type": "markdown", | |||
|
50 | "metadata": {}, | |||
|
51 | "source": [ | |||
|
52 | "Coming soon." | |||
|
53 | ] | |||
|
54 | }, | |||
|
55 | { | |||
49 | "cell_type": "heading", |
|
56 | "cell_type": "heading", | |
50 | "level": 2, |
|
57 | "level": 2, | |
51 | "metadata": {}, |
|
58 | "metadata": {}, | |
52 | "source": [ |
|
59 | "source": [ | |
53 | "Examples" |
|
60 | "Examples" | |
54 | ] |
|
61 | ] | |
|
62 | }, | |||
|
63 | { | |||
|
64 | "cell_type": "markdown", | |||
|
65 | "metadata": {}, | |||
|
66 | "source": [ | |||
|
67 | "Coming soon." | |||
|
68 | ] | |||
|
69 | }, | |||
|
70 | { | |||
|
71 | "cell_type": "heading", | |||
|
72 | "level": 2, | |||
|
73 | "metadata": {}, | |||
|
74 | "source": [ | |||
|
75 | "Non-notebook examples" | |||
|
76 | ] | |||
|
77 | }, | |||
|
78 | { | |||
|
79 | "cell_type": "markdown", | |||
|
80 | "metadata": {}, | |||
|
81 | "source": [ | |||
|
82 | "This directory also contains examples that are regular Python (`.py`) files." | |||
|
83 | ] | |||
|
84 | }, | |||
|
85 | { | |||
|
86 | "cell_type": "code", | |||
|
87 | "collapsed": false, | |||
|
88 | "input": [ | |||
|
89 | "from IPython.display import FileLink, display" | |||
|
90 | ], | |||
|
91 | "language": "python", | |||
|
92 | "metadata": {}, | |||
|
93 | "outputs": [], | |||
|
94 | "prompt_number": 1 | |||
|
95 | }, | |||
|
96 | { | |||
|
97 | "cell_type": "code", | |||
|
98 | "collapsed": false, | |||
|
99 | "input": [ | |||
|
100 | "files =!ls *.py\n", | |||
|
101 | "for f in files:\n", | |||
|
102 | " display(FileLink(f))" | |||
|
103 | ], | |||
|
104 | "language": "python", | |||
|
105 | "metadata": {}, | |||
|
106 | "outputs": [ | |||
|
107 | { | |||
|
108 | "html": [ | |||
|
109 | "<a href='appconfig.py' target='_blank'>appconfig.py</a><br>" | |||
|
110 | ], | |||
|
111 | "metadata": {}, | |||
|
112 | "output_type": "display_data", | |||
|
113 | "text": [ | |||
|
114 | "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Customization/appconfig.py" | |||
|
115 | ] | |||
|
116 | } | |||
|
117 | ], | |||
|
118 | "prompt_number": 2 | |||
55 | } |
|
119 | } | |
56 | ], |
|
120 | ], | |
57 | "metadata": {} |
|
121 | "metadata": {} |
@@ -1,7 +1,7 b'' | |||||
1 | { |
|
1 | { | |
2 | "metadata": { |
|
2 | "metadata": { | |
3 | "name": "", |
|
3 | "name": "", | |
4 | "signature": "sha256:ff3543408c0e2798384ca08ff9999664013d269f5fdc35290b1f318303dbd5b5" |
|
4 | "signature": "sha256:78b90d18791f32ff5abbbf5b4a9846ad8fad0a46af65125faac15f86f68da57f" | |
5 | }, |
|
5 | }, | |
6 | "nbformat": 3, |
|
6 | "nbformat": 3, | |
7 | "nbformat_minor": 0, |
|
7 | "nbformat_minor": 0, | |
@@ -31,6 +31,20 b'' | |||||
31 | ] |
|
31 | ] | |
32 | }, |
|
32 | }, | |
33 | { |
|
33 | { | |
|
34 | "cell_type": "markdown", | |||
|
35 | "metadata": {}, | |||
|
36 | "source": [ | |||
|
37 | "The architecture of IPython is built with reusable components. These components include:\n", | |||
|
38 | "\n", | |||
|
39 | "* The configuration system for processing command line arguments and configuration files\n", | |||
|
40 | "* The IPython `InteractiveShell` object that provides the core interactive features across the entire code base\n", | |||
|
41 | "* The IPython kernel, which provides the capabilities of the `InteractiveShell` object over a ZeroMQ/JSON based message protocol to various frontends\n", | |||
|
42 | "* The IPython frontends (Notebook, Qt Console, Console, Terminal)\n", | |||
|
43 | "\n", | |||
|
44 | "These components can be embedded into other applications." | |||
|
45 | ] | |||
|
46 | }, | |||
|
47 | { | |||
34 | "cell_type": "heading", |
|
48 | "cell_type": "heading", | |
35 | "level": 2, |
|
49 | "level": 2, | |
36 | "metadata": {}, |
|
50 | "metadata": {}, | |
@@ -39,12 +53,146 b'' | |||||
39 | ] |
|
53 | ] | |
40 | }, |
|
54 | }, | |
41 | { |
|
55 | { | |
|
56 | "cell_type": "markdown", | |||
|
57 | "metadata": {}, | |||
|
58 | "source": [ | |||
|
59 | "Coming soon." | |||
|
60 | ] | |||
|
61 | }, | |||
|
62 | { | |||
42 | "cell_type": "heading", |
|
63 | "cell_type": "heading", | |
43 | "level": 2, |
|
64 | "level": 2, | |
44 | "metadata": {}, |
|
65 | "metadata": {}, | |
45 | "source": [ |
|
66 | "source": [ | |
46 | "Examples" |
|
67 | "Examples" | |
47 | ] |
|
68 | ] | |
|
69 | }, | |||
|
70 | { | |||
|
71 | "cell_type": "markdown", | |||
|
72 | "metadata": {}, | |||
|
73 | "source": [ | |||
|
74 | "Coming soon." | |||
|
75 | ] | |||
|
76 | }, | |||
|
77 | { | |||
|
78 | "cell_type": "heading", | |||
|
79 | "level": 2, | |||
|
80 | "metadata": {}, | |||
|
81 | "source": [ | |||
|
82 | "Non-notebook examples" | |||
|
83 | ] | |||
|
84 | }, | |||
|
85 | { | |||
|
86 | "cell_type": "markdown", | |||
|
87 | "metadata": {}, | |||
|
88 | "source": [ | |||
|
89 | "This directory also contains examples that are regular Python (`.py`) files." | |||
|
90 | ] | |||
|
91 | }, | |||
|
92 | { | |||
|
93 | "cell_type": "code", | |||
|
94 | "collapsed": false, | |||
|
95 | "input": [ | |||
|
96 | "from IPython.display import FileLink, display" | |||
|
97 | ], | |||
|
98 | "language": "python", | |||
|
99 | "metadata": {}, | |||
|
100 | "outputs": [], | |||
|
101 | "prompt_number": 2 | |||
|
102 | }, | |||
|
103 | { | |||
|
104 | "cell_type": "code", | |||
|
105 | "collapsed": false, | |||
|
106 | "input": [ | |||
|
107 | "files =!ls *.py\n", | |||
|
108 | "for f in files:\n", | |||
|
109 | " display(FileLink(f))" | |||
|
110 | ], | |||
|
111 | "language": "python", | |||
|
112 | "metadata": {}, | |||
|
113 | "outputs": [ | |||
|
114 | { | |||
|
115 | "html": [ | |||
|
116 | "<a href='embed_class_long.py' target='_blank'>embed_class_long.py</a><br>" | |||
|
117 | ], | |||
|
118 | "metadata": {}, | |||
|
119 | "output_type": "display_data", | |||
|
120 | "text": [ | |||
|
121 | "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Embedding/embed_class_long.py" | |||
|
122 | ] | |||
|
123 | }, | |||
|
124 | { | |||
|
125 | "html": [ | |||
|
126 | "<a href='embed_class_short.py' target='_blank'>embed_class_short.py</a><br>" | |||
|
127 | ], | |||
|
128 | "metadata": {}, | |||
|
129 | "output_type": "display_data", | |||
|
130 | "text": [ | |||
|
131 | "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Embedding/embed_class_short.py" | |||
|
132 | ] | |||
|
133 | }, | |||
|
134 | { | |||
|
135 | "html": [ | |||
|
136 | "<a href='embed_function.py' target='_blank'>embed_function.py</a><br>" | |||
|
137 | ], | |||
|
138 | "metadata": {}, | |||
|
139 | "output_type": "display_data", | |||
|
140 | "text": [ | |||
|
141 | "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Embedding/embed_function.py" | |||
|
142 | ] | |||
|
143 | }, | |||
|
144 | { | |||
|
145 | "html": [ | |||
|
146 | "<a href='inprocess_qtconsole.py' target='_blank'>inprocess_qtconsole.py</a><br>" | |||
|
147 | ], | |||
|
148 | "metadata": {}, | |||
|
149 | "output_type": "display_data", | |||
|
150 | "text": [ | |||
|
151 | "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Embedding/inprocess_qtconsole.py" | |||
|
152 | ] | |||
|
153 | }, | |||
|
154 | { | |||
|
155 | "html": [ | |||
|
156 | "<a href='inprocess_terminal.py' target='_blank'>inprocess_terminal.py</a><br>" | |||
|
157 | ], | |||
|
158 | "metadata": {}, | |||
|
159 | "output_type": "display_data", | |||
|
160 | "text": [ | |||
|
161 | "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Embedding/inprocess_terminal.py" | |||
|
162 | ] | |||
|
163 | }, | |||
|
164 | { | |||
|
165 | "html": [ | |||
|
166 | "<a href='internal_ipkernel.py' target='_blank'>internal_ipkernel.py</a><br>" | |||
|
167 | ], | |||
|
168 | "metadata": {}, | |||
|
169 | "output_type": "display_data", | |||
|
170 | "text": [ | |||
|
171 | "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Embedding/internal_ipkernel.py" | |||
|
172 | ] | |||
|
173 | }, | |||
|
174 | { | |||
|
175 | "html": [ | |||
|
176 | "<a href='ipkernel_qtapp.py' target='_blank'>ipkernel_qtapp.py</a><br>" | |||
|
177 | ], | |||
|
178 | "metadata": {}, | |||
|
179 | "output_type": "display_data", | |||
|
180 | "text": [ | |||
|
181 | "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Embedding/ipkernel_qtapp.py" | |||
|
182 | ] | |||
|
183 | }, | |||
|
184 | { | |||
|
185 | "html": [ | |||
|
186 | "<a href='ipkernel_wxapp.py' target='_blank'>ipkernel_wxapp.py</a><br>" | |||
|
187 | ], | |||
|
188 | "metadata": {}, | |||
|
189 | "output_type": "display_data", | |||
|
190 | "text": [ | |||
|
191 | "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Embedding/ipkernel_wxapp.py" | |||
|
192 | ] | |||
|
193 | } | |||
|
194 | ], | |||
|
195 | "prompt_number": 3 | |||
48 | } |
|
196 | } | |
49 | ], |
|
197 | ], | |
50 | "metadata": {} |
|
198 | "metadata": {} |
@@ -1,7 +1,7 b'' | |||||
1 | { |
|
1 | { | |
2 | "metadata": { |
|
2 | "metadata": { | |
3 | "name": "", |
|
3 | "name": "", | |
4 | "signature": "sha256:0c0453ac3ddbb0ea6397e7f7216e6e005c4d1fe6e089921af39e874a411d7ed1" |
|
4 | "signature": "sha256:1f73cbd161515fd1a2c4b327925f1f17e45ed057ffb039a22cf833f61154e000" | |
5 | }, |
|
5 | }, | |
6 | "nbformat": 3, |
|
6 | "nbformat": 3, | |
7 | "nbformat_minor": 0, |
|
7 | "nbformat_minor": 0, | |
@@ -60,6 +60,63 b'' | |||||
60 | "source": [ |
|
60 | "source": [ | |
61 | "Examples" |
|
61 | "Examples" | |
62 | ] |
|
62 | ] | |
|
63 | }, | |||
|
64 | { | |||
|
65 | "cell_type": "markdown", | |||
|
66 | "metadata": {}, | |||
|
67 | "source": [ | |||
|
68 | "Coming soon." | |||
|
69 | ] | |||
|
70 | }, | |||
|
71 | { | |||
|
72 | "cell_type": "heading", | |||
|
73 | "level": 2, | |||
|
74 | "metadata": {}, | |||
|
75 | "source": [ | |||
|
76 | "Non-notebook examples" | |||
|
77 | ] | |||
|
78 | }, | |||
|
79 | { | |||
|
80 | "cell_type": "markdown", | |||
|
81 | "metadata": {}, | |||
|
82 | "source": [ | |||
|
83 | "This directory also contains examples that are regular Python (`.py`) files." | |||
|
84 | ] | |||
|
85 | }, | |||
|
86 | { | |||
|
87 | "cell_type": "code", | |||
|
88 | "collapsed": false, | |||
|
89 | "input": [ | |||
|
90 | "from IPython.display import FileLink, display" | |||
|
91 | ], | |||
|
92 | "language": "python", | |||
|
93 | "metadata": {}, | |||
|
94 | "outputs": [], | |||
|
95 | "prompt_number": 1 | |||
|
96 | }, | |||
|
97 | { | |||
|
98 | "cell_type": "code", | |||
|
99 | "collapsed": false, | |||
|
100 | "input": [ | |||
|
101 | "files =!ls *.py\n", | |||
|
102 | "for f in files:\n", | |||
|
103 | " display(FileLink(f))" | |||
|
104 | ], | |||
|
105 | "language": "python", | |||
|
106 | "metadata": {}, | |||
|
107 | "outputs": [ | |||
|
108 | { | |||
|
109 | "html": [ | |||
|
110 | "<a href='ipython-get-history.py' target='_blank'>ipython-get-history.py</a><br>" | |||
|
111 | ], | |||
|
112 | "metadata": {}, | |||
|
113 | "output_type": "display_data", | |||
|
114 | "text": [ | |||
|
115 | "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/IPython Kernel/ipython-get-history.py" | |||
|
116 | ] | |||
|
117 | } | |||
|
118 | ], | |||
|
119 | "prompt_number": 2 | |||
63 | } |
|
120 | } | |
64 | ], |
|
121 | ], | |
65 | "metadata": {} |
|
122 | "metadata": {} |
@@ -1,7 +1,7 b'' | |||||
1 | { |
|
1 | { | |
2 | "metadata": { |
|
2 | "metadata": { | |
3 | "name": "", |
|
3 | "name": "", | |
4 | "signature": "sha256:5a6c0780821e9af91f7138522ac5dc8d37ad7b23919120fba8d4de23fd6af80f" |
|
4 | "signature": "sha256:38d053b68b57c8c0c1208833a9449fc02d62f069f4f0088b0cc3d6f95ce7a455" | |
5 | }, |
|
5 | }, | |
6 | "nbformat": 3, |
|
6 | "nbformat": 3, | |
7 | "nbformat_minor": 0, |
|
7 | "nbformat_minor": 0, | |
@@ -46,12 +46,146 b'' | |||||
46 | ] |
|
46 | ] | |
47 | }, |
|
47 | }, | |
48 | { |
|
48 | { | |
|
49 | "cell_type": "markdown", | |||
|
50 | "metadata": {}, | |||
|
51 | "source": [ | |||
|
52 | "Coming soon." | |||
|
53 | ] | |||
|
54 | }, | |||
|
55 | { | |||
49 | "cell_type": "heading", |
|
56 | "cell_type": "heading", | |
50 | "level": 2, |
|
57 | "level": 2, | |
51 | "metadata": {}, |
|
58 | "metadata": {}, | |
52 | "source": [ |
|
59 | "source": [ | |
53 | "Examples" |
|
60 | "Examples" | |
54 | ] |
|
61 | ] | |
|
62 | }, | |||
|
63 | { | |||
|
64 | "cell_type": "markdown", | |||
|
65 | "metadata": {}, | |||
|
66 | "source": [ | |||
|
67 | "* [Background Jobs](Background Jobs.ipynb)" | |||
|
68 | ] | |||
|
69 | }, | |||
|
70 | { | |||
|
71 | "cell_type": "heading", | |||
|
72 | "level": 2, | |||
|
73 | "metadata": {}, | |||
|
74 | "source": [ | |||
|
75 | "Non-notebook examples" | |||
|
76 | ] | |||
|
77 | }, | |||
|
78 | { | |||
|
79 | "cell_type": "markdown", | |||
|
80 | "metadata": {}, | |||
|
81 | "source": [ | |||
|
82 | "This directory also contains examples that are regular Python (`.py`) files." | |||
|
83 | ] | |||
|
84 | }, | |||
|
85 | { | |||
|
86 | "cell_type": "code", | |||
|
87 | "collapsed": false, | |||
|
88 | "input": [ | |||
|
89 | "from IPython.display import FileLink, display" | |||
|
90 | ], | |||
|
91 | "language": "python", | |||
|
92 | "metadata": {}, | |||
|
93 | "outputs": [], | |||
|
94 | "prompt_number": 1 | |||
|
95 | }, | |||
|
96 | { | |||
|
97 | "cell_type": "code", | |||
|
98 | "collapsed": false, | |||
|
99 | "input": [ | |||
|
100 | "files =!ls *.py\n", | |||
|
101 | "for f in files:\n", | |||
|
102 | " display(FileLink(f))" | |||
|
103 | ], | |||
|
104 | "language": "python", | |||
|
105 | "metadata": {}, | |||
|
106 | "outputs": [ | |||
|
107 | { | |||
|
108 | "html": [ | |||
|
109 | "<a href='example-demo.py' target='_blank'>example-demo.py</a><br>" | |||
|
110 | ], | |||
|
111 | "metadata": {}, | |||
|
112 | "output_type": "display_data", | |||
|
113 | "text": [ | |||
|
114 | "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Miscellaneous/example-demo.py" | |||
|
115 | ] | |||
|
116 | }, | |||
|
117 | { | |||
|
118 | "html": [ | |||
|
119 | "<a href='gui-glut.py' target='_blank'>gui-glut.py</a><br>" | |||
|
120 | ], | |||
|
121 | "metadata": {}, | |||
|
122 | "output_type": "display_data", | |||
|
123 | "text": [ | |||
|
124 | "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Miscellaneous/gui-glut.py" | |||
|
125 | ] | |||
|
126 | }, | |||
|
127 | { | |||
|
128 | "html": [ | |||
|
129 | "<a href='gui-gtk.py' target='_blank'>gui-gtk.py</a><br>" | |||
|
130 | ], | |||
|
131 | "metadata": {}, | |||
|
132 | "output_type": "display_data", | |||
|
133 | "text": [ | |||
|
134 | "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Miscellaneous/gui-gtk.py" | |||
|
135 | ] | |||
|
136 | }, | |||
|
137 | { | |||
|
138 | "html": [ | |||
|
139 | "<a href='gui-gtk3.py' target='_blank'>gui-gtk3.py</a><br>" | |||
|
140 | ], | |||
|
141 | "metadata": {}, | |||
|
142 | "output_type": "display_data", | |||
|
143 | "text": [ | |||
|
144 | "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Miscellaneous/gui-gtk3.py" | |||
|
145 | ] | |||
|
146 | }, | |||
|
147 | { | |||
|
148 | "html": [ | |||
|
149 | "<a href='gui-pyglet.py' target='_blank'>gui-pyglet.py</a><br>" | |||
|
150 | ], | |||
|
151 | "metadata": {}, | |||
|
152 | "output_type": "display_data", | |||
|
153 | "text": [ | |||
|
154 | "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Miscellaneous/gui-pyglet.py" | |||
|
155 | ] | |||
|
156 | }, | |||
|
157 | { | |||
|
158 | "html": [ | |||
|
159 | "<a href='gui-qt.py' target='_blank'>gui-qt.py</a><br>" | |||
|
160 | ], | |||
|
161 | "metadata": {}, | |||
|
162 | "output_type": "display_data", | |||
|
163 | "text": [ | |||
|
164 | "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Miscellaneous/gui-qt.py" | |||
|
165 | ] | |||
|
166 | }, | |||
|
167 | { | |||
|
168 | "html": [ | |||
|
169 | "<a href='gui-tk.py' target='_blank'>gui-tk.py</a><br>" | |||
|
170 | ], | |||
|
171 | "metadata": {}, | |||
|
172 | "output_type": "display_data", | |||
|
173 | "text": [ | |||
|
174 | "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Miscellaneous/gui-tk.py" | |||
|
175 | ] | |||
|
176 | }, | |||
|
177 | { | |||
|
178 | "html": [ | |||
|
179 | "<a href='gui-wx.py' target='_blank'>gui-wx.py</a><br>" | |||
|
180 | ], | |||
|
181 | "metadata": {}, | |||
|
182 | "output_type": "display_data", | |||
|
183 | "text": [ | |||
|
184 | "/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Miscellaneous/gui-wx.py" | |||
|
185 | ] | |||
|
186 | } | |||
|
187 | ], | |||
|
188 | "prompt_number": 2 | |||
55 | } |
|
189 | } | |
56 | ], |
|
190 | ], | |
57 | "metadata": {} |
|
191 | "metadata": {} |
@@ -1,7 +1,7 b'' | |||||
1 | { |
|
1 | { | |
2 | "metadata": { |
|
2 | "metadata": { | |
3 | "name": "", |
|
3 | "name": "", | |
4 | "signature": "sha256:812b50625c522f2be11a8c19ec003484bb7c67cd1cf388b336a49d5ee187aaff" |
|
4 | "signature": "sha256:24e7c8d3c3d2d4b6e7a5b9d01c7e413b736537327a485e257912943fc013a888" | |
5 | }, |
|
5 | }, | |
6 | "nbformat": 3, |
|
6 | "nbformat": 3, | |
7 | "nbformat_minor": 0, |
|
7 | "nbformat_minor": 0, | |
@@ -85,7 +85,7 b'' | |||||
85 | "cell_type": "markdown", |
|
85 | "cell_type": "markdown", | |
86 | "metadata": {}, |
|
86 | "metadata": {}, | |
87 | "source": [ |
|
87 | "source": [ | |
88 |
"This directory also contains |
|
88 | "This directory also contains examples that are regular Python (`.py`) files." | |
89 | ] |
|
89 | ] | |
90 | }, |
|
90 | }, | |
91 | { |
|
91 | { |
General Comments 0
You need to be logged in to leave comments.
Login now