I am using the python-pptx library to create a table in pptx document. I want to add an image in the table cell, but I haven't found such option to do so.
I am adding cell using following code:
table.cell(0, 1).text = 'cell text'
How we can add an image in a table cell using python-pptx?