(self, id, width=400, height=300, **kwargs)
| 366 | """ |
| 367 | |
| 368 | def __init__(self, id, width=400, height=300, **kwargs): |
| 369 | src="https://www.scribd.com/embeds/{0}/content".format(id) |
| 370 | super(ScribdDocument, self).__init__(src, width, height, **kwargs) |
| 371 | |
| 372 | class FileLink: |
| 373 | """Class for embedding a local file link in an IPython session, based on path |