Show More
@@ -1,44 +1,44 b'' | |||||
1 | """Public API for display tools in IPython. |
|
1 | """Public API for display tools in IPython. | |
2 | """ |
|
2 | """ | |
3 |
|
3 | |||
4 | # ----------------------------------------------------------------------------- |
|
4 | # ----------------------------------------------------------------------------- | |
5 | # Copyright (C) 2012 The IPython Development Team |
|
5 | # Copyright (C) 2012 The IPython Development Team | |
6 | # |
|
6 | # | |
7 | # Distributed under the terms of the BSD License. The full license is in |
|
7 | # Distributed under the terms of the BSD License. The full license is in | |
8 | # the file COPYING, distributed as part of this software. |
|
8 | # the file COPYING, distributed as part of this software. | |
9 | # ----------------------------------------------------------------------------- |
|
9 | # ----------------------------------------------------------------------------- | |
10 |
|
10 | |||
11 | # ----------------------------------------------------------------------------- |
|
11 | # ----------------------------------------------------------------------------- | |
12 | # Imports |
|
12 | # Imports | |
13 | # ----------------------------------------------------------------------------- |
|
13 | # ----------------------------------------------------------------------------- | |
14 |
|
14 | |||
15 | from IPython.core.display_functions import * |
|
15 | from IPython.core.display_functions import * | |
16 | from IPython.core.display import ( |
|
16 | from IPython.core.display import ( | |
17 | display_pretty, |
|
17 | display_pretty as display_pretty, | |
18 | display_html, |
|
18 | display_html as display_html, | |
19 | display_markdown, |
|
19 | display_markdown as display_markdown, | |
20 | display_svg, |
|
20 | display_svg as display_svg, | |
21 | display_png, |
|
21 | display_png as display_png, | |
22 | display_jpeg, |
|
22 | display_jpeg as display_jpeg, | |
23 | display_latex, |
|
23 | display_latex as display_latex, | |
24 | display_json, |
|
24 | display_json as display_json, | |
25 | display_javascript, |
|
25 | display_javascript as display_javascript, | |
26 | display_pdf, |
|
26 | display_pdf as display_pdf, | |
27 | DisplayObject, |
|
27 | DisplayObject as DisplayObject, | |
28 | TextDisplayObject, |
|
28 | TextDisplayObject as TextDisplayObject, | |
29 | Pretty, |
|
29 | Pretty as Pretty, | |
30 | HTML, |
|
30 | HTML as HTML, | |
31 | Markdown, |
|
31 | Markdown as Markdown, | |
32 | Math, |
|
32 | Math as Math, | |
33 | Latex, |
|
33 | Latex as Latex, | |
34 | SVG, |
|
34 | SVG as SVG, | |
35 | ProgressBar, |
|
35 | ProgressBar as ProgressBar, | |
36 | JSON, |
|
36 | JSON as JSON, | |
37 | GeoJSON, |
|
37 | GeoJSON as GeoJSON, | |
38 | Javascript, |
|
38 | Javascript as Javascript, | |
39 | Image, |
|
39 | Image as Image, | |
40 | set_matplotlib_formats, |
|
40 | set_matplotlib_formats as set_matplotlib_formats, | |
41 | set_matplotlib_close, |
|
41 | set_matplotlib_close as set_matplotlib_close, | |
42 | Video, |
|
42 | Video as Video, | |
43 | ) |
|
43 | ) | |
44 | from IPython.lib.display import * |
|
44 | from IPython.lib.display import * |
General Comments 0
You need to be logged in to leave comments.
Login now