Word File Processing in Python

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

КОМЕНТАРІ • 67

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

    I've literally been looking for something like this for my job. 🙏 Thank you!

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

    This is the real mission man... Keep it up❤

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

    Great introduction to this topic. I wanted to automatically edit an existing CV and your tutorial covered most of this. Do you have another that just edits and updates an existing doc based on text found in the document?

  • @iaconst4.0
    @iaconst4.0 10 місяців тому

    lo digo en español , asi como te entendi en ingles perfectamente: buen video!! gracias por compartir tus conocimientos!

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

    I will certainly read the docs. Good intro. However, clearly you don't use Word documents all that much, since the ONE thing you didn't touch on was find and replace! Either way, I appreciate bringing this library to our attention.

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

      The documentation is horrendous… I’ve been tearing my hair out with it all day

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

      @@jeedub6142 I know! 😂🤦‍♂️ It appears the only way find-and-replace is to loop through each run with regex. In other words, nothing to do with the library itself.

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

    Hey I am trying to figure out how to split a word document by paragraphs. I can't figure out how to handle paragraphs that split pages. For example the paragraph starts on page one and ends on page two. No matter how I try to do it it always splits a paragraph that spans pages into two paragraphs.

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

    Wonderful, mate! You helped me with my legal analysis! 🎉

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

    Thank you so much for this video!!! This has been a massive help. Thanks again.

  • @divyarathnakar4245
    @divyarathnakar4245 11 місяців тому

    Great Video, Thank You!. Is there a way update the Header text in the existing word document? Can you please share your ideas on it?

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

    How can i extract text from the footnotes of a word document? Do you have a solution for that been looking everywhere on the internet but cant seem to find working solutions. Thanks in advance!

  • @TheFlorin1998
    @TheFlorin1998 2 роки тому +2

    So this is latex but for word documents. Kinda neat!

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

    Very good tutorial, but I have a question if we use a {Client} or [Name] or , how can we do this, as financial contracts are much more complex Example:
    {TermTitle}
    {Senior} {Currency} {AggPrinAmount} {Collared}{Type} Notes due {MaturityDate format “yyyy”}

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

    for anyone wondering: second part starts at 10:11

  • @elijahbock4357
    @elijahbock4357 8 днів тому

    I'm sure you figured it out by now but your issue was that you were concatenating p.text instead of run.text to the string each time. This was causing you to print the whole paragraph for every run that was in 16pts, instead of printing every run**

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

    Hi !
    Can you please make a video on merging multiple word documents into one combined document ? And the combined document has a table of contents for the merged documents ? TIA

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

    I downloaded python from the main site but I can't find the terminal, what did I do wrong and should I reinstall it? Thank you.

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

      If you are on Windows, the terminal is the command prompt.
      Type in cmd on WIndows 10 to open it.
      This is where you can do the commands like pip install

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

      @@hartoflearning so terminal is CMD? Thank you I thought it's different program.

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

      @@Zombitopia Yes. However in a coding software like Visual Studio Code, you can usually do much of the same thing in a window called terminal.
      Also, if you are just getting started, and you are using Windows, and decide to use something like Visual Studio Code or Pycharm, right click and "Run As Administrator."

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

    Thanks bu ı have a problem :My content starts with tags, how can I transfer them without losing style properties?

  • @CemYilmaz-zh4ft
    @CemYilmaz-zh4ft 7 місяців тому

    Is it possible to get the Text out from a Shape?

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

    Nice work . How can I write in txt format document like Notepad ? Thnx Bro .

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

    why are add_heading, add_paragraph, add_run etc. not highlighted in my vs code editor?

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

    How can I create a hyperlink in the document?

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

    How to set column width

  • @gustavojuantorena
    @gustavojuantorena 2 роки тому +2

    Great! Super useful for automation

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

      This would especially be AWESOME for custom template generation. @NeuralNine I wonder if there would be something similar to this for PowerPoint slides. If there is, can you also show that to us?

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

    Why is the intelisense in my vscode not working? I can't see the tips for functions...

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

    Hi!Can we automate with this workflow?

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

    how to extract the hyperlinks from the document? any suggestion?

    • @trruthawareness
      @trruthawareness 5 місяців тому

      although i'm quite the beginner, i could suggest for each portion you are going thru, do a match on a regex for a hyperlink. something close to this one? pattern = r'(https?://)' then maybe can do something like match = re.search(pattern, cell) if match: etc.

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

    File is show error when run from V.S code. Is there any extension that should be downloaded in V.S code?

  • @lubnalukman105
    @lubnalukman105 11 місяців тому

    Can anyone help me with an assignment..qstn is create a django project and prepare a word doc regarding project and app files ..pls anyone help

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

    I enjoy the tut, tell us about find and replace text.

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

    Incredibly useful, thank you very very much !!!!!

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

    Great video, thanks! So, why I am poking around in this topic is to find out how to *modify* text in a Word document. In particular I have got an interview with two people, and I want to have all the interviewer's text to be in italics. Also I don't have a Python environment, I assume this is not too hard to set up. Do you have videos on this? Thanks

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

    CAN WE COUNT NUMBER PAGES PRESENT IN DOCX FILE IN PYTHON SCRIPT

  • @Hex-Scholar
    @Hex-Scholar Рік тому

    Hey, how can we insert one document file into another document file using Python ?

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

    That was a cool video, thank you!

  • @shreyas_._
    @shreyas_._ 2 роки тому +1

    Little exaggerating till "we gonna use an external Library called ...." . But what ever ... Your contents are "PAKKA" 🔥 and the selection of subject

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

    Isn't there a run.text property?

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

    Can we keep the word file
    Open while the code runs to see if everything is happening correctly

  • @dr.fritza959
    @dr.fritza959 2 роки тому

    Would love to see more codewar videos.

  • @ellyeroms-qy1ym
    @ellyeroms-qy1ym 11 місяців тому

    theres a new release of python docx. could create a video on that
    please

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

    Intro song for channel identified - £g0 - "Keep Talkin'" (2020); I gotta warn you all though, the lyrics are extremely explicit!!!
    But seriously, if there's something similar to the library shown here for use with Microsoft Powerpoint, could you please show that to us? Would be super awesome!

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

    Bro i am not able to make a new file in python

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

    I got error messages. It didn’t recognize pip.

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

      when installing Python make sure you thick the box about pip, also you need to have python in your path, see environment variables, hope it helps

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

    Thanks for the video, this is incredible useful

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

    Great video!

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

    How to split word document page by page using python? any one have code of this please let me know reply me here
    Thanks

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

    brilliant.

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

    Thank you!

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

    I use odfpy, which lets you read and write documents conforming to ISO 26300. That’s a *proper* document standard.

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

    Thanks

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

    Thx . : )

  • @404errorpagenotfound.6
    @404errorpagenotfound.6 2 роки тому

    Err, why not just use word??

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

      Let's say you have 200 word files that have a similar structure and you want to extract the data from all tables for example to create a dataframe from them. Want to do it manually?

    • @404errorpagenotfound.6
      @404errorpagenotfound.6 2 роки тому

      @@NeuralNine point taken, also thanks for your work.

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

    How can I export the word file? my function is as below
    def export_file(request):
    if request.method =="POST":
    document=Document()
    duyurular=Duyuru.objects.all()
    for duyuru in duyurular:
    print(duyuru.name)
    document.add_heading(duyuru.name,1)
    tagsiz_paragraf = BeautifulSoup(duyuru.aciklama, "lxml").text
    document.save("icerikler.docx")
    paragraph = document.add_paragraph(tagsiz_paragraf)
    paragraph.alignment = 3 # for left, 1 for center, 2 right, 3 justify ....
    return redirect('list_duyuru')

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

    This is the real mission man... Keep it up❤