Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/IPython/display.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.4.4, created at 2024-04-20 06:09 +0000

1"""Public API for display tools in IPython. 

2""" 

3 

4# ----------------------------------------------------------------------------- 

5# Copyright (C) 2012 The IPython Development Team 

6# 

7# Distributed under the terms of the BSD License. The full license is in 

8# the file COPYING, distributed as part of this software. 

9# ----------------------------------------------------------------------------- 

10 

11# ----------------------------------------------------------------------------- 

12# Imports 

13# ----------------------------------------------------------------------------- 

14 

15from IPython.core.display_functions import * 

16from IPython.core.display import ( 

17 display_pretty, 

18 display_html, 

19 display_markdown, 

20 display_svg, 

21 display_png, 

22 display_jpeg, 

23 display_latex, 

24 display_json, 

25 display_javascript, 

26 display_pdf, 

27 DisplayObject, 

28 TextDisplayObject, 

29 Pretty, 

30 HTML, 

31 Markdown, 

32 Math, 

33 Latex, 

34 SVG, 

35 ProgressBar, 

36 JSON, 

37 GeoJSON, 

38 Javascript, 

39 Image, 

40 set_matplotlib_formats, 

41 set_matplotlib_close, 

42 Video, 

43) 

44from IPython.lib.display import *