I have an html table that I want to insert into a ReportLab generated PDF.
I am able to create a PDF and add text/pictures to it:
from reportlab.lib.pagesizes import letter
from reportlab.platypus import SimpleDocTemplate, Paragraph, Spacer, Image
from reportlab.lib.styles import getSampleStyleSheet
from reportlab.lib.units import inch
styles=getSampleStyleSheet()
doc = SimpleDocTemplate("NCM_weekly.pdf",pagesize=letter,
rightMargin=inch/2,leftMargin=inch/2,
topMargin=18,bottomMargin=18)
Story=[]
add_text("Weekly Packet", style="Heading1", fontsize=24)
add_text(today, style="Heading2", fontsize=12)
df.plot()
buf = io.BytesIO()
plt.savefig(buf, format='png',dpi=300)
buf.seek(0)
im = Image(buf, 7*inch, 2.25*inch)
Story.append(im)
So what is the best way to add an HTML table from a string?
question from:
https://stackoverflow.com/questions/65890228/python-reportlab-with-html-tables 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…