[Django]-Approach: python-pdfkit convert webpage(JS generated) into PDF

5👍

This could be because pdf is rendered before the entire javascript is loaded. If you introduce a javascript delay it will work.

 options = {
    'javascript-delay':'5000'
           }
👤Arun24

Leave a comment