I tried generating a sample pdf file using the below code. I believe a pdf has been generated, but I can't view it. How can I view this pdf and how to export it. I am new to databricks. Please help to find a solution. Thanks
from fpdf import FPDF
class PDF(FPDF):
pass
pdf = PDF()
pdf.add_page()
pdf.output('test.pdf','F')
pdf_w=210
pdf_h=297
class PDF(FPDF):
def lines(self):
self.rect(5.0, 5.0, 200.0,287.0)