(self, id, width=400, height=300, **kwargs)
| 340 | """ |
| 341 | |
| 342 | def __init__(self, id, width=400, height=300, **kwargs): |
| 343 | src="https://www.scribd.com/embeds/{0}/content".format(id) |
| 344 | super(ScribdDocument, self).__init__(src, width, height, **kwargs) |
| 345 | |
| 346 | class FileLink(object): |
| 347 | """Class for embedding a local file link in an IPython session, based on path |