Convert Word Files To PDF in Python - DOCX To PDF

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ธ.ค. 2024

ความคิดเห็น • 24

  • @sad_man_no_talent
    @sad_man_no_talent 6 หลายเดือนก่อน +18

    python rule 34: if it exists there is a function for it

    • @Md.AlmasAli
      @Md.AlmasAli 6 หลายเดือนก่อน

      How can I find all rules? Can you share the source?

    • @Eurotool
      @Eurotool 6 หลายเดือนก่อน

      ​@@Md.AlmasAlirules of the internet joke

    • @d_mvp
      @d_mvp 6 หลายเดือนก่อน

      @@Md.AlmasAli That's a joke.

  • @nopens
    @nopens 6 หลายเดือนก่อน

    never got to watch this video, but today i had the need to convert 30+ docxs to pdf and immediately remembered that you can do this with python. What a time to be alive

  • @ShivanshKumar-007
    @ShivanshKumar-007 14 วันที่ผ่านมา

    It doesn't work in case of images, if you want to extract and associate images with respective pages, you will observe that all the images will be embedded in all the pages

  • @avishkar6181
    @avishkar6181 6 หลายเดือนก่อน +1

    Few weeks back I was facing an interesting problem with docx . I wanted to extract the text from the file then translate them and put them back with the same formatting,styles, size etc for each word. We could achieve formatting properly but couldn’t do the same for styles and sizes. Is there anyway to do this? Would love to see a video about this

    • @frostpredator
      @frostpredator 6 หลายเดือนก่อน

      You can use the docx library to deal with styles

  • @sundarravikumar4533
    @sundarravikumar4533 6 หลายเดือนก่อน

    Hi, run mh code in .exe file and i try to convert doc to pdf. It shows some server error failed. But code works fine. How can i rectify that doc to pdf part

  • @vaibhavgirase3021
    @vaibhavgirase3021 4 หลายเดือนก่อน

    When I use to convert docx file to pdf but images or animation s of docx file are not show in converted pdf file and it shows like text file why ?

  • @sundarravikumar4533
    @sundarravikumar4533 5 หลายเดือนก่อน

    Docx2pdf not working while converting my code into .exe file using pyinstaller. It shows nonetype object has no attribute value. But mh code works fine.

  • @InviProgUz
    @InviProgUz 6 หลายเดือนก่อน

    Your videos are very useful👍 and like to me. 🇺🇿

  • @alexeykazmin7539
    @alexeykazmin7539 6 หลายเดือนก่อน

    how to convert many files at once?

    • @TimeCheckOfficial
      @TimeCheckOfficial 4 หลายเดือนก่อน

      add import os and make sure to contain your multiple docx files into one single folder and then convert its path

  • @umaidstudy
    @umaidstudy 3 หลายเดือนก่อน

    This does not work for conda3_python in aws sagemaker can someone help

  • @cyanide_stew
    @cyanide_stew 3 หลายเดือนก่อน +1

    Fj

  • @psyraxx39
    @psyraxx39 5 หลายเดือนก่อน +1

    This is what happened to Dr Disrespect

  • @AviSchwartz1
    @AviSchwartz1 6 หลายเดือนก่อน

    In Linux you are really not doing the conversion in Python but rather just using Python as a wrapper. In this case I would just use a shell script and be done with it.

  • @artCoderr
    @artCoderr 6 หลายเดือนก่อน

    Bro do some complex stuff. These kind of video in 2024 is very shitty

  • @harshabugatti
    @harshabugatti 6 หลายเดือนก่อน +1

    Getting this error "[WinError 2] The system cannot find the file specified" in windows...!
    I have executed same code (changed "file.docx" to "WordToPDF.docx")

    • @manifestasisanubari
      @manifestasisanubari 6 หลายเดือนก่อน

      It seems like the terminal is run not inside the same directory of the file

    • @harshabugatti
      @harshabugatti 6 หลายเดือนก่อน

      @@manifestasisanubari I tried the code in the same directory of the word file. Still no luck

    • @AtulMishra-r3z
      @AtulMishra-r3z 3 หลายเดือนก่อน

      Download 'LibraOffice' and set path so it run on window error you are getting is window error
      def convert_to_pdf(doc_path):
      # Define the output PDF path based on input DOC or DOCX path
      pdf_output_path = f"{doc_path.rsplit('.', 1)[0]}.pdf"
      # Full path to soffice.exe
      # libreoffice_path = r'C:\Program Files (x86)\LibreOffice\program\swriter.exe'
      # Use LibreOffice to convert both .doc and .docx to PDF
      subprocess.run(['libreoffice', '--headless', '--convert-to', 'pdf', doc_path, '--outdir', upload_dir])
      return pdf_output_path