##// END OF EJS Templates
Add some links in documentation
Matthias Bussonnier -
Show More
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
@@ -1,293 +1,296 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2 #
2 #
3 # IPython documentation build configuration file.
3 # IPython documentation build configuration file.
4
4
5 # NOTE: This file has been edited manually from the auto-generated one from
5 # NOTE: This file has been edited manually from the auto-generated one from
6 # sphinx. Do NOT delete and re-generate. If any changes from sphinx are
6 # sphinx. Do NOT delete and re-generate. If any changes from sphinx are
7 # needed, generate a scratch one and merge by hand any new fields needed.
7 # needed, generate a scratch one and merge by hand any new fields needed.
8
8
9 #
9 #
10 # This file is execfile()d with the current directory set to its containing dir.
10 # This file is execfile()d with the current directory set to its containing dir.
11 #
11 #
12 # The contents of this file are pickled, so don't put values in the namespace
12 # The contents of this file are pickled, so don't put values in the namespace
13 # that aren't pickleable (module imports are okay, they're removed automatically).
13 # that aren't pickleable (module imports are okay, they're removed automatically).
14 #
14 #
15 # All configuration values have a default value; values that are commented out
15 # All configuration values have a default value; values that are commented out
16 # serve to show the default value.
16 # serve to show the default value.
17
17
18 import sys, os
18 import sys, os
19
19
20 # http://read-the-docs.readthedocs.io/en/latest/faq.html
20 # http://read-the-docs.readthedocs.io/en/latest/faq.html
21 ON_RTD = os.environ.get('READTHEDOCS', None) == 'True'
21 ON_RTD = os.environ.get('READTHEDOCS', None) == 'True'
22
22
23 if ON_RTD:
23 if ON_RTD:
24 tags.add('rtd')
24 tags.add('rtd')
25
25
26 # RTD doesn't use the Makefile, so re-run autogen_{things}.py here.
26 # RTD doesn't use the Makefile, so re-run autogen_{things}.py here.
27 for name in ('config', 'api', 'magics', 'shortcuts'):
27 for name in ('config', 'api', 'magics', 'shortcuts'):
28 fname = 'autogen_{}.py'.format(name)
28 fname = 'autogen_{}.py'.format(name)
29 fpath = os.path.abspath(os.path.join('..', fname))
29 fpath = os.path.abspath(os.path.join('..', fname))
30 with open(fpath) as f:
30 with open(fpath) as f:
31 exec(compile(f.read(), fname, 'exec'), {
31 exec(compile(f.read(), fname, 'exec'), {
32 '__file__': fpath,
32 '__file__': fpath,
33 '__name__': '__main__',
33 '__name__': '__main__',
34 })
34 })
35 else:
35 else:
36 import sphinx_rtd_theme
36 import sphinx_rtd_theme
37 html_theme = "sphinx_rtd_theme"
37 html_theme = "sphinx_rtd_theme"
38 html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
38 html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
39
39
40 # If your extensions are in another directory, add it here. If the directory
40 # If your extensions are in another directory, add it here. If the directory
41 # is relative to the documentation root, use os.path.abspath to make it
41 # is relative to the documentation root, use os.path.abspath to make it
42 # absolute, like shown here.
42 # absolute, like shown here.
43 sys.path.insert(0, os.path.abspath('../sphinxext'))
43 sys.path.insert(0, os.path.abspath('../sphinxext'))
44
44
45 # We load the ipython release info into a dict by explicit execution
45 # We load the ipython release info into a dict by explicit execution
46 iprelease = {}
46 iprelease = {}
47 exec(compile(open('../../IPython/core/release.py').read(), '../../IPython/core/release.py', 'exec'),iprelease)
47 exec(compile(open('../../IPython/core/release.py').read(), '../../IPython/core/release.py', 'exec'),iprelease)
48
48
49 # General configuration
49 # General configuration
50 # ---------------------
50 # ---------------------
51
51
52 # Add any Sphinx extension module names here, as strings. They can be extensions
52 # Add any Sphinx extension module names here, as strings. They can be extensions
53 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
53 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
54 extensions = [
54 extensions = [
55 'sphinx.ext.autodoc',
55 'sphinx.ext.autodoc',
56 'sphinx.ext.autosummary',
56 'sphinx.ext.autosummary',
57 'sphinx.ext.doctest',
57 'sphinx.ext.doctest',
58 'sphinx.ext.inheritance_diagram',
58 'sphinx.ext.inheritance_diagram',
59 'sphinx.ext.intersphinx',
59 'sphinx.ext.intersphinx',
60 'IPython.sphinxext.ipython_console_highlighting',
60 'IPython.sphinxext.ipython_console_highlighting',
61 'IPython.sphinxext.ipython_directive',
61 'IPython.sphinxext.ipython_directive',
62 'sphinx.ext.napoleon', # to preprocess docstrings
62 'sphinx.ext.napoleon', # to preprocess docstrings
63 'github', # for easy GitHub links
63 'github', # for easy GitHub links
64 'magics',
64 'magics',
65 ]
65 ]
66
66
67 if ON_RTD:
67 if ON_RTD:
68 # Remove extensions not currently supported on RTD
68 # Remove extensions not currently supported on RTD
69 extensions.remove('IPython.sphinxext.ipython_directive')
69 extensions.remove('IPython.sphinxext.ipython_directive')
70 extensions.remove('IPython.sphinxext.ipython_console_highlighting')
70 extensions.remove('IPython.sphinxext.ipython_console_highlighting')
71
71
72 # Add any paths that contain templates here, relative to this directory.
72 # Add any paths that contain templates here, relative to this directory.
73 templates_path = ['_templates']
73 templates_path = ['_templates']
74
74
75 # The suffix of source filenames.
75 # The suffix of source filenames.
76 source_suffix = '.rst'
76 source_suffix = '.rst'
77
77
78 rst_prolog = ''
78 rst_prolog = ''
79
79
80 def is_stable(extra):
80 def is_stable(extra):
81 for ext in {'dev', 'b', 'rc'}:
81 for ext in {'dev', 'b', 'rc'}:
82 if ext in extra:
82 if ext in extra:
83 return False
83 return False
84 return True
84 return True
85
85
86 if is_stable(iprelease['_version_extra']):
86 if is_stable(iprelease['_version_extra']):
87 tags.add('ipystable')
87 tags.add('ipystable')
88 else:
88 else:
89 tags.add('ipydev')
89 tags.add('ipydev')
90 rst_prolog += """
90 rst_prolog += """
91 .. warning::
91 .. warning::
92
92
93 This documentation covers a development version of IPython. The development
93 This documentation covers a development version of IPython. The development
94 version may differ significantly from the latest stable release.
94 version may differ significantly from the latest stable release.
95 """
95 """
96
96
97 rst_prolog += """
97 rst_prolog += """
98 .. important::
98 .. important::
99
99
100 This documentation covers IPython versions 6.0 and higher. Beginning with
100 This documentation covers IPython versions 6.0 and higher. Beginning with
101 version 6.0, IPython stopped supporting compatibility with Python versions
101 version 6.0, IPython stopped supporting compatibility with Python versions
102 lower than 3.3 including all versions of Python 2.7.
102 lower than 3.3 including all versions of Python 2.7.
103
103
104 If you are looking for an IPython version compatible with Python 2.7,
104 If you are looking for an IPython version compatible with Python 2.7,
105 please use the IPython 5.x LTS release and refer to its documentation (LTS
105 please use the IPython 5.x LTS release and refer to its documentation (LTS
106 is the long term support release).
106 is the long term support release).
107
107
108 """
108 """
109
109
110 # The master toctree document.
110 # The master toctree document.
111 master_doc = 'index'
111 master_doc = 'index'
112
112
113 # General substitutions.
113 # General substitutions.
114 project = 'IPython'
114 project = 'IPython'
115 copyright = 'The IPython Development Team'
115 copyright = 'The IPython Development Team'
116
116
117 # ghissue config
117 # ghissue config
118 github_project_url = "https://github.com/ipython/ipython"
118 github_project_url = "https://github.com/ipython/ipython"
119
119
120 # numpydoc config
120 # numpydoc config
121 numpydoc_show_class_members = False # Otherwise Sphinx emits thousands of warnings
121 numpydoc_show_class_members = False # Otherwise Sphinx emits thousands of warnings
122 numpydoc_class_members_toctree = False
122 numpydoc_class_members_toctree = False
123
123
124 # The default replacements for |version| and |release|, also used in various
124 # The default replacements for |version| and |release|, also used in various
125 # other places throughout the built documents.
125 # other places throughout the built documents.
126 #
126 #
127 # The full version, including alpha/beta/rc tags.
127 # The full version, including alpha/beta/rc tags.
128 release = "%s" % iprelease['version']
128 release = "%s" % iprelease['version']
129 # Just the X.Y.Z part, no '-dev'
129 # Just the X.Y.Z part, no '-dev'
130 version = iprelease['version'].split('-', 1)[0]
130 version = iprelease['version'].split('-', 1)[0]
131
131
132
132
133 # There are two options for replacing |today|: either, you set today to some
133 # There are two options for replacing |today|: either, you set today to some
134 # non-false value, then it is used:
134 # non-false value, then it is used:
135 #today = ''
135 #today = ''
136 # Else, today_fmt is used as the format for a strftime call.
136 # Else, today_fmt is used as the format for a strftime call.
137 today_fmt = '%B %d, %Y'
137 today_fmt = '%B %d, %Y'
138
138
139 # List of documents that shouldn't be included in the build.
139 # List of documents that shouldn't be included in the build.
140 #unused_docs = []
140 #unused_docs = []
141
141
142 # Exclude these glob-style patterns when looking for source files. They are
142 # Exclude these glob-style patterns when looking for source files. They are
143 # relative to the source/ directory.
143 # relative to the source/ directory.
144 exclude_patterns = ['whatsnew/pr']
144 exclude_patterns = ['whatsnew/pr']
145
145
146
146
147 # If true, '()' will be appended to :func: etc. cross-reference text.
147 # If true, '()' will be appended to :func: etc. cross-reference text.
148 #add_function_parentheses = True
148 #add_function_parentheses = True
149
149
150 # If true, the current module name will be prepended to all description
150 # If true, the current module name will be prepended to all description
151 # unit titles (such as .. function::).
151 # unit titles (such as .. function::).
152 #add_module_names = True
152 #add_module_names = True
153
153
154 # If true, sectionauthor and moduleauthor directives will be shown in the
154 # If true, sectionauthor and moduleauthor directives will be shown in the
155 # output. They are ignored by default.
155 # output. They are ignored by default.
156 #show_authors = False
156 #show_authors = False
157
157
158 # The name of the Pygments (syntax highlighting) style to use.
158 # The name of the Pygments (syntax highlighting) style to use.
159 pygments_style = 'sphinx'
159 pygments_style = 'sphinx'
160
160
161 # Set the default role so we can use `foo` instead of ``foo``
161 # Set the default role so we can use `foo` instead of ``foo``
162 default_role = 'literal'
162 default_role = 'literal'
163
163
164 # Options for HTML output
164 # Options for HTML output
165 # -----------------------
165 # -----------------------
166
166
167 # The style sheet to use for HTML and HTML Help pages. A file of that name
167 # The style sheet to use for HTML and HTML Help pages. A file of that name
168 # must exist either in Sphinx' static/ path, or in one of the custom paths
168 # must exist either in Sphinx' static/ path, or in one of the custom paths
169 # given in html_static_path.
169 # given in html_static_path.
170 # html_style = 'default.css'
170 # html_style = 'default.css'
171
171
172
172
173 # The name for this set of Sphinx documents. If None, it defaults to
173 # The name for this set of Sphinx documents. If None, it defaults to
174 # "<project> v<release> documentation".
174 # "<project> v<release> documentation".
175 #html_title = None
175 #html_title = None
176
176
177 # The name of an image file (within the static path) to place at the top of
177 # The name of an image file (within the static path) to place at the top of
178 # the sidebar.
178 # the sidebar.
179 #html_logo = None
179 #html_logo = None
180
180
181 # Add any paths that contain custom static files (such as style sheets) here,
181 # Add any paths that contain custom static files (such as style sheets) here,
182 # relative to this directory. They are copied after the builtin static files,
182 # relative to this directory. They are copied after the builtin static files,
183 # so a file named "default.css" will overwrite the builtin "default.css".
183 # so a file named "default.css" will overwrite the builtin "default.css".
184 html_static_path = ['_static']
184 html_static_path = ['_static']
185
185
186 # Favicon needs the directory name
186 # Favicon needs the directory name
187 html_favicon = '_static/favicon.ico'
187 html_favicon = '_static/favicon.ico'
188 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
188 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
189 # using the given strftime format.
189 # using the given strftime format.
190 html_last_updated_fmt = '%b %d, %Y'
190 html_last_updated_fmt = '%b %d, %Y'
191
191
192 # If true, SmartyPants will be used to convert quotes and dashes to
192 # If true, SmartyPants will be used to convert quotes and dashes to
193 # typographically correct entities.
193 # typographically correct entities.
194 #html_use_smartypants = True
194 #html_use_smartypants = True
195
195
196 # Custom sidebar templates, maps document names to template names.
196 # Custom sidebar templates, maps document names to template names.
197 #html_sidebars = {}
197 #html_sidebars = {}
198
198
199 # Additional templates that should be rendered to pages, maps page names to
199 # Additional templates that should be rendered to pages, maps page names to
200 # template names.
200 # template names.
201 html_additional_pages = {
201 html_additional_pages = {
202 'interactive/htmlnotebook': 'notebook_redirect.html',
202 'interactive/htmlnotebook': 'notebook_redirect.html',
203 'interactive/notebook': 'notebook_redirect.html',
203 'interactive/notebook': 'notebook_redirect.html',
204 'interactive/nbconvert': 'notebook_redirect.html',
204 'interactive/nbconvert': 'notebook_redirect.html',
205 'interactive/public_server': 'notebook_redirect.html',
205 'interactive/public_server': 'notebook_redirect.html',
206 }
206 }
207
207
208 # If false, no module index is generated.
208 # If false, no module index is generated.
209 #html_use_modindex = True
209 #html_use_modindex = True
210
210
211 # If true, the reST sources are included in the HTML build as _sources/<name>.
211 # If true, the reST sources are included in the HTML build as _sources/<name>.
212 #html_copy_source = True
212 #html_copy_source = True
213
213
214 # If true, an OpenSearch description file will be output, and all pages will
214 # If true, an OpenSearch description file will be output, and all pages will
215 # contain a <link> tag referring to it. The value of this option must be the
215 # contain a <link> tag referring to it. The value of this option must be the
216 # base URL from which the finished HTML is served.
216 # base URL from which the finished HTML is served.
217 #html_use_opensearch = ''
217 #html_use_opensearch = ''
218
218
219 # If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml").
219 # If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml").
220 #html_file_suffix = ''
220 #html_file_suffix = ''
221
221
222 # Output file base name for HTML help builder.
222 # Output file base name for HTML help builder.
223 htmlhelp_basename = 'ipythondoc'
223 htmlhelp_basename = 'ipythondoc'
224
224
225 intersphinx_mapping = {'python': ('https://docs.python.org/3/', None),
225 intersphinx_mapping = {'python': ('https://docs.python.org/3/', None),
226 'rpy2': ('https://rpy2.readthedocs.io/en/version_2.8.x/', None),
226 'rpy2': ('https://rpy2.readthedocs.io/en/version_2.8.x/', None),
227 'traitlets': ('https://traitlets.readthedocs.io/en/latest/', None),
227 'traitlets': ('https://traitlets.readthedocs.io/en/latest/', None),
228 'jupyterclient': ('https://jupyter-client.readthedocs.io/en/latest/', None),
228 'jupyterclient': ('https://jupyter-client.readthedocs.io/en/latest/', None),
229 'ipyparallel': ('https://ipyparallel.readthedocs.io/en/latest/', None),
229 'ipyparallel': ('https://ipyparallel.readthedocs.io/en/latest/', None),
230 'jupyter': ('https://jupyter.readthedocs.io/en/latest/', None),
230 'jupyter': ('https://jupyter.readthedocs.io/en/latest/', None),
231 'jedi': ('https://jedi.readthedocs.io/en/latest/', None),
231 'jedi': ('https://jedi.readthedocs.io/en/latest/', None),
232 'traitlets': ('https://traitlets.readthedocs.io/en/latest/', None),
232 'traitlets': ('https://traitlets.readthedocs.io/en/latest/', None),
233 'ipykernel': ('https://ipykernel.readthedocs.io/en/latest/', None),
233 'ipykernel': ('https://ipykernel.readthedocs.io/en/latest/', None),
234 'prompt_toolkit' : ('https://python-prompt-toolkit.readthedocs.io/en/stable/', None),
235 'ipywidgets': ('https://ipywidgets.readthedocs.io/en/stable/', None),
236 'ipyparallel': ('https://ipyparallel.readthedocs.io/en/stable/', None)
234 }
237 }
235
238
236 # Options for LaTeX output
239 # Options for LaTeX output
237 # ------------------------
240 # ------------------------
238
241
239 # The paper size ('letter' or 'a4').
242 # The paper size ('letter' or 'a4').
240 latex_paper_size = 'letter'
243 latex_paper_size = 'letter'
241
244
242 # The font size ('10pt', '11pt' or '12pt').
245 # The font size ('10pt', '11pt' or '12pt').
243 latex_font_size = '11pt'
246 latex_font_size = '11pt'
244
247
245 # Grouping the document tree into LaTeX files. List of tuples
248 # Grouping the document tree into LaTeX files. List of tuples
246 # (source start file, target name, title, author, document class [howto/manual]).
249 # (source start file, target name, title, author, document class [howto/manual]).
247
250
248 latex_documents = [
251 latex_documents = [
249 ('index', 'ipython.tex', 'IPython Documentation',
252 ('index', 'ipython.tex', 'IPython Documentation',
250 u"""The IPython Development Team""", 'manual', True),
253 u"""The IPython Development Team""", 'manual', True),
251 ('parallel/winhpc_index', 'winhpc_whitepaper.tex',
254 ('parallel/winhpc_index', 'winhpc_whitepaper.tex',
252 'Using IPython on Windows HPC Server 2008',
255 'Using IPython on Windows HPC Server 2008',
253 u"Brian E. Granger", 'manual', True)
256 u"Brian E. Granger", 'manual', True)
254 ]
257 ]
255
258
256 # The name of an image file (relative to this directory) to place at the top of
259 # The name of an image file (relative to this directory) to place at the top of
257 # the title page.
260 # the title page.
258 #latex_logo = None
261 #latex_logo = None
259
262
260 # For "manual" documents, if this is true, then toplevel headings are parts,
263 # For "manual" documents, if this is true, then toplevel headings are parts,
261 # not chapters.
264 # not chapters.
262 #latex_use_parts = False
265 #latex_use_parts = False
263
266
264 # Additional stuff for the LaTeX preamble.
267 # Additional stuff for the LaTeX preamble.
265 #latex_preamble = ''
268 #latex_preamble = ''
266
269
267 # Documents to append as an appendix to all manuals.
270 # Documents to append as an appendix to all manuals.
268 #latex_appendices = []
271 #latex_appendices = []
269
272
270 # If false, no module index is generated.
273 # If false, no module index is generated.
271 latex_use_modindex = True
274 latex_use_modindex = True
272
275
273
276
274 # Options for texinfo output
277 # Options for texinfo output
275 # --------------------------
278 # --------------------------
276
279
277 texinfo_documents = [
280 texinfo_documents = [
278 (master_doc, 'ipython', 'IPython Documentation',
281 (master_doc, 'ipython', 'IPython Documentation',
279 'The IPython Development Team',
282 'The IPython Development Team',
280 'IPython',
283 'IPython',
281 'IPython Documentation',
284 'IPython Documentation',
282 'Programming',
285 'Programming',
283 1),
286 1),
284 ]
287 ]
285
288
286 modindex_common_prefix = ['IPython.']
289 modindex_common_prefix = ['IPython.']
287
290
288
291
289 # Cleanup
292 # Cleanup
290 # -------
293 # -------
291 # delete release info to avoid pickling errors from sphinx
294 # delete release info to avoid pickling errors from sphinx
292
295
293 del iprelease
296 del iprelease
@@ -1,111 +1,117 b''
1 .. _introduction:
1 .. _introduction:
2
2
3 =====================
3 =====================
4 IPython Documentation
4 IPython Documentation
5 =====================
5 =====================
6
6
7 .. only:: html
7 .. only:: html
8
8
9 :Release: |release|
9 :Release: |release|
10 :Date: |today|
10 :Date: |today|
11
11
12 Welcome to the official IPython documentation
12 Welcome to the official IPython documentation
13
13
14 IPython provides a rich toolkit to help you make the most of using Python
14 IPython provides a rich toolkit to help you make the most of using Python
15 interactively. Its main components are:
15 interactively. Its main components are:
16
16
17 * A powerful interactive Python shell
17 * A powerful interactive Python shell
18
18
19
20 .. image:: /_images/ipython-6-screenshot.png
21 :alt: Screenshot of IPython 6.0
22 :align: center
23
24
19 * A `Jupyter <http://jupyter.org/>`_ kernel to work with Python code in Jupyter
25 * A `Jupyter <http://jupyter.org/>`_ kernel to work with Python code in Jupyter
20 notebooks and other interactive frontends.
26 notebooks and other interactive frontends.
21
27
22 The enhanced interactive Python shells and kernel have the following main
28 The enhanced interactive Python shells and kernel have the following main
23 features:
29 features:
24
30
25 * Comprehensive object introspection.
31 * Comprehensive object introspection.
26
32
27 * Input history, persistent across sessions.
33 * Input history, persistent across sessions.
28
34
29 * Caching of output results during a session with automatically generated
35 * Caching of output results during a session with automatically generated
30 references.
36 references.
31
37
32 * Extensible tab completion, with support by default for completion of python
38 * Extensible tab completion, with support by default for completion of python
33 variables and keywords, filenames and function keywords.
39 variables and keywords, filenames and function keywords.
34
40
35 * Extensible system of 'magic' commands for controlling the environment and
41 * Extensible system of 'magic' commands for controlling the environment and
36 performing many tasks related to IPython or the operating system.
42 performing many tasks related to IPython or the operating system.
37
43
38 * A rich configuration system with easy switching between different setups
44 * A rich configuration system with easy switching between different setups
39 (simpler than changing $PYTHONSTARTUP environment variables every time).
45 (simpler than changing ``$PYTHONSTARTUP`` environment variables every time).
40
46
41 * Session logging and reloading.
47 * Session logging and reloading.
42
48
43 * Extensible syntax processing for special purpose situations.
49 * Extensible syntax processing for special purpose situations.
44
50
45 * Access to the system shell with user-extensible alias system.
51 * Access to the system shell with user-extensible alias system.
46
52
47 * Easily embeddable in other Python programs and GUIs.
53 * Easily embeddable in other Python programs and GUIs.
48
54
49 * Integrated access to the pdb debugger and the Python profiler.
55 * Integrated access to the pdb debugger and the Python profiler.
50
56
51
57
52 The Command line interface inherits the above functionality and adds
58 The Command line interface inherits the above functionality and adds
53
59
54 * real multi-line editing.
60 * real multi-line editing thanks to `prompt_toolkit <http://python-prompt-toolkit.readthedocs.io/en/stable/>`_.
55
61
56 * syntax highlighting as you type
62 * syntax highlighting as you type
57
63
58 * integration with command line editor for a better workflow.
64 * integration with command line editor for a better workflow.
59
65
60 The kernel also has its share of features. When used with a compatible frontend,
66 The kernel also has its share of features. When used with a compatible frontend,
61 it allows:
67 it allows:
62
68
63 * the object to create a rich display of Html, Images, Latex, Sound and
69 * the object to create a rich display of Html, Images, Latex, Sound and
64 Video.
70 Video.
65
71
66 * interactive widgets with the use of the ``ipywidgets`` package.
72 * interactive widgets with the use of the `ipywidgets <http://ipywidgets.readthedocs.io/en/stable/>`_ package.
67
73
68
74
69 This documentation will walk you through most of the features of the IPython
75 This documentation will walk you through most of the features of the IPython
70 command line and kernel, as well as describe the internal mechanisms in order
76 command line and kernel, as well as describe the internal mechanisms in order
71 to improve your Python workflow.
77 to improve your Python workflow.
72
78
73 You can find the table of content for this documentation in the left
79 You can find the table of content for this documentation in the left
74 sidebar, allowing you to come back to previous sections or skip ahead, if needed.
80 sidebar, allowing you to come back to previous sections or skip ahead, if needed.
75
81
76
82
77 The latest development version is always available from IPython's `GitHub
83 The latest development version is always available from IPython's `GitHub
78 repository <http://github.com/ipython/ipython>`_.
84 repository <http://github.com/ipython/ipython>`_.
79
85
80
86
81
87
82
88
83 .. toctree::
89 .. toctree::
84 :maxdepth: 1
90 :maxdepth: 1
85 :hidden:
91 :hidden:
86
92
87 self
93 self
88 overview
94 overview
89 whatsnew/index
95 whatsnew/index
90 install/index
96 install/index
91 interactive/index
97 interactive/index
92 config/index
98 config/index
93 development/index
99 development/index
94 coredev/index
100 coredev/index
95 api/index
101 api/index
96 about/index
102 about/index
97
103
98 .. seealso::
104 .. seealso::
99
105
100 `Jupyter documentation <http://jupyter.readthedocs.io/en/latest/>`__
106 `Jupyter documentation <http://jupyter.readthedocs.io/en/latest/>`__
101 The Jupyter documentation provides information about the Notebook code and other Jupyter sub-projects.
107 The Jupyter documentation provides information about the Notebook code and other Jupyter sub-projects.
102 `ipyparallel documentation <http://ipyparallel.readthedocs.io/en/latest/>`__
108 `ipyparallel documentation <http://ipyparallel.readthedocs.io/en/latest/>`__
103 Formerly ``IPython.parallel``.
109 Formerly ``IPython.parallel``.
104
110
105
111
106 .. only:: html
112 .. only:: html
107
113
108 * :ref:`genindex`
114 * :ref:`genindex`
109 * :ref:`modindex`
115 * :ref:`modindex`
110 * :ref:`search`
116 * :ref:`search`
111
117
General Comments 0
You need to be logged in to leave comments. Login now