init
This commit is contained in:
commit
38355d2442
9083 changed files with 1225834 additions and 0 deletions
44
.venv/lib/python3.8/site-packages/IPython/display.py
Normal file
44
.venv/lib/python3.8/site-packages/IPython/display.py
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
"""Public API for display tools in IPython.
|
||||
"""
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Copyright (C) 2012 The IPython Development Team
|
||||
#
|
||||
# Distributed under the terms of the BSD License. The full license is in
|
||||
# the file COPYING, distributed as part of this software.
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Imports
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
from IPython.core.display_functions import *
|
||||
from IPython.core.display import (
|
||||
display_pretty,
|
||||
display_html,
|
||||
display_markdown,
|
||||
display_svg,
|
||||
display_png,
|
||||
display_jpeg,
|
||||
display_latex,
|
||||
display_json,
|
||||
display_javascript,
|
||||
display_pdf,
|
||||
DisplayObject,
|
||||
TextDisplayObject,
|
||||
Pretty,
|
||||
HTML,
|
||||
Markdown,
|
||||
Math,
|
||||
Latex,
|
||||
SVG,
|
||||
ProgressBar,
|
||||
JSON,
|
||||
GeoJSON,
|
||||
Javascript,
|
||||
Image,
|
||||
set_matplotlib_formats,
|
||||
set_matplotlib_close,
|
||||
Video,
|
||||
)
|
||||
from IPython.lib.display import *
|
||||
Loading…
Add table
Add a link
Reference in a new issue