Display the SVG representation of an object. Parameters ---------- objs : tuple of objects The Python objects to display, or if raw=True raw svg data to display. raw : bool Are the data objects raw data or Python objects that need to be formatted befo
(*objs, **kwargs)
| 449 | |
| 450 | |
| 451 | def display_svg(*objs, **kwargs): |
| 452 | """Display the SVG representation of an object. |
| 453 | |
| 454 | Parameters |
| 455 | ---------- |
| 456 | objs : tuple of objects |
| 457 | The Python objects to display, or if raw=True raw svg data to |
| 458 | display. |
| 459 | raw : bool |
| 460 | Are the data objects raw data or Python objects that need to be |
| 461 | formatted before display? [default: False] |
| 462 | metadata : dict (optional) |
| 463 | Metadata to be associated with the specific mimetype output. |
| 464 | """ |
| 465 | _display_mimetype('image/svg+xml', objs, **kwargs) |
| 466 | |
| 467 | |
| 468 | def display_png(*objs, **kwargs): |
nothing calls this directly
no test coverage detected