colab-pdf
colab-pdf copied to clipboard
Simple script to download your colab ipynb as a pdf using nbconvert
I'm trying download the pdf file from a Cobab with a image. I've tried insert the image directly, insert using markdown, html, but nothing works. I can see the image...
When I run the script, the resulting PDF only contains two pages when the colab notebook is much longer.
I see no output from the exports when either running ``` !wget -nc https://raw.githubusercontent.com/brpy/colab-pdf/master/colab_pdf.py from colab_pdf import colab_pdf colab_pdf('path-to-notebook.ipynb') ``` * As the last cell after manual run * As...
This method doesn't work for foreign language output. For me its russian language that does not appear.
when executing block code, an authorization code is now required and I cannot access the functionality of this repo
Other users on youtube are also having this issue. It's on the last few pages, where it doesn't print everything. However, I don't believe it's fully your fault. If I...
Hey there and thanks for the share! I tried used it as you instructed. Everything executed and the log says the pdf saved in drive but I can not see...
The path for Google Drive has been changed from "My Drive/" to "MyDrive/"
spravka
from fpdf import FPDF class PDF(FPDF): def header(self): self.set_font("Arial", "B", 14) self.cell(0, 10, "СПРАВКА О ПРОИСХОЖДЕНИИ СРЕДСТВ", ln=True, align="C") self.ln(5) pdf = PDF() pdf.add_page() pdf.set_auto_page_break(auto=True, margin=15) pdf.setfont("Arial", size=12) text =...