(self, id, width=400, height=300, **kwargs)
| 305 | """ |
| 306 | |
| 307 | def __init__(self, id, width=400, height=300, **kwargs): |
| 308 | self.id=id |
| 309 | src = "https://www.youtube.com/embed/{0}".format(id) |
| 310 | super(YouTubeVideo, self).__init__(src, width, height, **kwargs) |
| 311 | |
| 312 | def _repr_jpeg_(self): |
| 313 | # Deferred import |