1

I am using pyexcelerate library to generate an excel sheet in python. I need to add an image at the top using an image url but I could not find any solution for that library. Can anyone tell whether its possible to add image using pyexcelerate?

John Doe
  • 11
  • 3

1 Answers1

2

I'm afraid, this isn't possible. The library pyexcelerate is aiming to fast writing data. If you want add an image, use an different library, for example openpyxl:
https://openpyxl.readthedocs.io/en/stable/usage.html?highlight=image#inserting-an-image

luipenox
  • 123
  • 5