I have a DataFrame that needs to be converted to a HTML file. The DataFrame can be quite large and it contains images. I saw this thread which works for smaller DataFrames but mine tend to be around 10k-20k rows (with images) so the html file just loads and loads but eventually crashes.
Is there a way to just load the images and text for each page individually rather than the page trying to load everything at once?
Or is there another method for creating a HTML file from a Pandas DataFrame that would work with a large DataFrame containing image tags?