Create PDF with Python | Part 1

Поділитися
Вставка
  • Опубліковано 9 лис 2024

КОМЕНТАРІ • 75

  • @joachimguth6226
    @joachimguth6226 3 роки тому +9

    Soon your channel will soar. Not many speak and explain as structured and clear as you do.

  • @tinytreasuresblueprints1
    @tinytreasuresblueprints1 Рік тому +1

    Thank you so much. With your help I have automated reports on my website❤️

  • @stillchris4171
    @stillchris4171 Рік тому +2

    If you use explorer preview, you can see the .pdf update dynamically, without having to close and reopen the .prf viewer

  • @empowercode
    @empowercode 3 роки тому +6

    Hey Chart Explorers, nice to meet you! I just found your channel and subscribed, love what you're doing!
    I like how clear and detailed your explanations are as well as the depth of knowledge you have surrounding the topic! Since I run a tech education channel as well, I love to see fellow Content Creators sharing, educating, and inspiring a large global audience. I wish you the best of luck on your UA-cam Journey, can't wait to see you succeed! Your content really stands out and you've put so much thought into your videos!
    Cheers, happy holidays, and keep up the great work ;)

  • @Michael-value
    @Michael-value Рік тому +1

    Just stumbeld over your chanal. Awesome videos. Just wanna say thank you for your great work. I highly appreciate what you do and how you do it. The way you explain everything is super clear. Again. Keep up the great work.

    • @Kreytro
      @Kreytro Рік тому +1

      bro didnt even respond 💀

  • @runner6994
    @runner6994 Рік тому +3

    The "ln" method, discussed about the 7:30 mark, is deprecated. The replacement method isn't particularly appealing.

  • @user-zd7xw2lp1o
    @user-zd7xw2lp1o 2 роки тому +1

    This is exactly what I've been looking for, thank you so much!!!

  • @zunaidhassan9662
    @zunaidhassan9662 2 роки тому +9

    Thanks for the video. While trying to move the second cell to next line using the 'ln' parameter, I am getting the following warning:
    "DeprecationWarning: The parameter "ln" is deprecated. Instead of ln=True use new_x=XPos.LMARGIN, new_y=YPos.NEXT."
    Using the recommended parameters are also giving errors as XPos and YPos have not been defined.
    However, according to the documentation (Tuto 1 - Minimal Example), the following paramters can be used: new_x="LMARGIN", new_y="NEXT". This worked for me.
    So, the code at line 21 at time 7:40 becomes:
    pdf.cell(120, 10, 'Hello World!', new_x="LMARGIN", new_y="NEXT")

    • @jjnbdal
      @jjnbdal 2 роки тому

      I found the same issue when I ran the python script in a console or with Jupyter, but when I ran the same code in Spyder IDE (v5), all went fine. Does anyone know what is going on here? Thanks!

    • @natb007
      @natb007 Рік тому +1

      Another solution: use pdf.ln()

    • @QuimChaos
      @QuimChaos Рік тому +1

      I had to import XPos and YPos (from fpdf import FPDF, XPos, YPos), and use pdf.cell(120, 10, 'Hello World!', new_x=XPos.LMARGIN, new_y=YPos.NEXT)... new_x="LMARGIN", new_y="NEXT" wouldn't work...

    • @jwa9463
      @jwa9463 Рік тому

      Thanks it worked for me@@QuimChaos

    • @kurrizzle
      @kurrizzle 5 місяців тому +1

      @@natb007 brilliant

  • @simaobonvalot7697
    @simaobonvalot7697 2 роки тому +6

    Very nice video, I loved the way you comment and explain every argument of the function, it helps a lot if you want to your own thing.
    There is one question I have though. I noticed that when I draw a border around my cell, the text will overflow beyond the border. Does that mean that the text will not wrap inside the cell size and keep going beyond it if it doesn't have enough space ?
    Thanks !

  • @mrmuranga
    @mrmuranga 3 роки тому +2

    Thanks....well laid out start.
    Waiting for the bit where I can save my dataframes to pdf

    • @ChartExplorers
      @ChartExplorers  3 роки тому +2

      Thanks! We will be going over how to create tables in your pdf based on a DataFrame in the 4th video :)

    • @mrmuranga
      @mrmuranga 3 роки тому

      @@ChartExplorers Awesome....can't wait ! thanks Bradon

  • @code-to-learn
    @code-to-learn 8 місяців тому

    Thanks a lot sir. This is the course I was waiting for

  • @Aditya-qb1to
    @Aditya-qb1to 2 роки тому

    This type of video. I have been searching since a month , that is very helpful viedo , i like that viedo and also have learnt my things, Ty

  • @mohamedbouamara689
    @mohamedbouamara689 2 роки тому

    Hello,
    Very nice job and many thanks man for sharing knowledge.
    I have a question sir : How can I change pdf file from A4 to tabloid ?

  • @MilesAhead66
    @MilesAhead66 10 місяців тому

    Top!!!! Straight to the topic! Thanks!

  • @brpawankumariyengar4227
    @brpawankumariyengar4227 2 місяці тому

    Great Video … Thank you so very much ❤❤❤

  • @StraniSimo
    @StraniSimo 9 місяців тому

    Can you please add the link to the files you mention in the video? Thank you

  • @sahilsharmahere
    @sahilsharmahere Рік тому

    Great tutorial Man, Thanks !

  • @higiniofuentes2551
    @higiniofuentes2551 Рік тому

    Thank you for this very useful video!

  • @faruk6397
    @faruk6397 3 роки тому +1

    Hello. Thanks for this lesson. I have a question. How can I print a 3D model from a pdf using python?

    • @ChartExplorers
      @ChartExplorers  3 роки тому +1

      Hi Faruk, good question. I have no idea! but it sounds exciting. Let me know if you figure anything out.

    • @faruk6397
      @faruk6397 3 роки тому

      @@ChartExplorers Thank you for the answer. I continue research

  • @SameerTalar
    @SameerTalar 2 роки тому

    Nice info..thanks for sharing

  • @rodrigoherencia4507
    @rodrigoherencia4507 Рік тому

    Hello, question, how can we open the pdf when we run the code, so that you do not have to go to the folder and open it manually?
    Thank you

  • @PriLuftSmaniotto
    @PriLuftSmaniotto Рік тому

    Hello, How can I generate a table with sum values in the last row? Thanks.

  • @subhadeepchowdhury5244
    @subhadeepchowdhury5244 Рік тому

    Very helpfull video. FPDF docs are not that good. It would take me a lot of time to understand it fast. I have only one day left in my project. You made it very intuitive.

  • @jovensaventureiros
    @jovensaventureiros 2 роки тому

    Hello, before anything I wanna to thank u for this videos, helped me a lot. I wanna ask u if u know how can I fix some error. I'm saving some form in a database and creating PDFs with this data, but the multi_cell attribute isn't work as I expect, it's not breaking lines. Have u have some idea how can I fix this? Again, thx for this videos and congratulations to your channel.

  • @paolobena
    @paolobena 2 роки тому

    Great video!

  • @yanghaitao9680
    @yanghaitao9680 3 роки тому +1

    hi, i have one question, how to add button and when i press it, it will reture to catalog?

    • @ChartExplorers
      @ChartExplorers  3 роки тому

      Hi! Thanks for the question. I'm not sure about a button, but what you can do is add an image (of a button) and then a link. In this video studio.ua-cam.com/users/videoK917aOsfnDc/edit I discuss how to add links to text (it is the same process with an image but you would use pdf.image).

  • @miiihaaas
    @miiihaaas 2 роки тому

    is there any easy way for support UTF-8 (i need characters like: č, ć, ž, š, đ...)?

  • @2Saturo
    @2Saturo 3 роки тому +1

    Hey does anyone know how i can adjust the vertical alignment of a text inside a cell ?
    When i create a cell with a border the text is automatically vertical centered.. But what if i want it to be at the top ?
    btw. nice video :) !

    • @ChartExplorers
      @ChartExplorers  3 роки тому +1

      Thanks! It doesn't look like there is a way to vertically align within the cell at the current moment. Depending on what you are trying to accomplish you could try to draw a rectangle around the cell with the rect method. pdf.rect(x=20,y=80,w=100,h=40,style='D')

  • @56BAK
    @56BAK 3 роки тому +1

    Thank you

  • @tomgreg2008
    @tomgreg2008 2 роки тому

    Great vid!

  • @mangotofu1360
    @mangotofu1360 2 роки тому

    Thank you this helped!

  • @horikatanifuji5038
    @horikatanifuji5038 2 роки тому

    Is there a way to write pdf's using html and css and python?

  • @abhishes
    @abhishes 2 роки тому

    so easy thanks a lot!!!

  • @coloradojon
    @coloradojon Рік тому

    How to add a template image PNG in the background of the PDF file? Wich folder choose

  • @MohamedTarek-kl5hf
    @MohamedTarek-kl5hf 3 роки тому +1

    we cant use custom fonts ? only font that provided ?

    • @ChartExplorers
      @ChartExplorers  3 роки тому

      Great question, check out this video here ua-cam.com/video/o7vixt2mVdo/v-deo.html

  • @mr.goldmanbachmajorian3523
    @mr.goldmanbachmajorian3523 3 роки тому

    Thanks! Exactly what i wanted :)

  • @Saywhatohno
    @Saywhatohno 3 роки тому +1

    Anyway i can run this python script in Excel (through VBA) becasue this way anyone can run the script and not just me. Also once I have all the PDF i need to upload it to certain folders on gdrive so can that be done

    • @ChartExplorers
      @ChartExplorers  3 роки тому +1

      Hi Fahad, good question. This would be really useful!! I have not used VBA so I'm not the best one to answer this question, but it does look like there is some stuff out on this topic. Please let me know if you find any good resources.

  • @adithyavedula1270
    @adithyavedula1270 2 роки тому

    can you tell how to add images?

  • @easy_tech4169
    @easy_tech4169 3 роки тому +1

    thanks man how i can print the pdf file using python

    • @ChartExplorers
      @ChartExplorers  3 роки тому

      Print the pdf to the console?

    • @jackbialek409
      @jackbialek409 3 роки тому

      @@ChartExplorers I think he means literally print it to a printer

  • @akcandlestick8948
    @akcandlestick8948 3 роки тому

    thks for video sir i make pdf small pdf of fpdf2 but how can i direct print pdf on my default printer in my pc. pls help

    • @ChartExplorers
      @ChartExplorers  3 роки тому

      Take a look at this article muddoo.com/tutorials/how-to-send-a-file-to-printer-for-print-using-python/. I haven't tried it out myself yet (but I will and I'll make a video on it). Let me know if you have any success. Best of luck.

  • @gnfrost6724
    @gnfrost6724 3 роки тому

    Hello I would like to ask if is it possible to use custom fonts
    your reply would be very much appricaited thx

    • @ChartExplorers
      @ChartExplorers  3 роки тому +1

      Hey GNFrost! This is a great question and something I should have added to this PDF video series.
      I just made a video that describes this process. You can check it out here ua-cam.com/video/o7vixt2mVdo/v-deo.html

    • @gnfrost6724
      @gnfrost6724 3 роки тому

      @@ChartExplorers thanks

  • @totoskiller
    @totoskiller 7 місяців тому

    nice thx

  • @jonevanmoore
    @jonevanmoore 3 роки тому

    Is there a way to italicize certain words in a sentence and not others? I'm trying to use MLA format to cite books with this

    • @ChartExplorers
      @ChartExplorers  3 роки тому +1

      This type of formatting has been my biggest pain point when creating PDFs with Python. I created a video to answer a similar question a few weeks ago which is the best solution I have found to format only part of a string ua-cam.com/video/CozYzrz7f-k/v-deo.html (This video discusses underlining text, but it is the same process as italicizing text). It is rather clunky, but it gets the job done. If you are using it for a bunch of citations you may want to create a function that does everything in the video.

    • @jonevanmoore
      @jonevanmoore 3 роки тому +1

      @@ChartExplorers Thanks! This is super helpful!

  • @gustavorosas-dev
    @gustavorosas-dev Рік тому

  • @Tamilnanba
    @Tamilnanba 8 місяців тому

    sir please do the coding slowly and show it on white screen

  • @py_tok5589
    @py_tok5589 2 роки тому

    lovely thanks

  • @sujin8380
    @sujin8380 3 роки тому

    How it possible for 100pages of single pdf file, I wish to 100 pages of spitted pdf, to assign different names assign in each pdf file, how it do.

  • @buffaloofm7119
    @buffaloofm7119 2 роки тому

    nice

  • @vishalprithiv6377
    @vishalprithiv6377 7 місяців тому

    hi i love your bald head

  • @АлексейСоков-ь8и
    @АлексейСоков-ь8и 2 роки тому

    2022

  • @lakshaynz
    @lakshaynz 2 роки тому

    Man you are Awesome! do you have paypal?/ kofi? I want to donate