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?
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 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.
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.
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!
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”}
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**
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
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 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."
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?
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.
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
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!
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?
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')
I've literally been looking for something like this for my job. 🙏 Thank you!
This is the real mission man... Keep it up❤
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?
lo digo en español , asi como te entendi en ingles perfectamente: buen video!! gracias por compartir tus conocimientos!
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.
The documentation is horrendous… I’ve been tearing my hair out with it all day
@@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.
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.
Wonderful, mate! You helped me with my legal analysis! 🎉
Thank you so much for this video!!! This has been a massive help. Thanks again.
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?
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!
So this is latex but for word documents. Kinda neat!
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”}
for anyone wondering: second part starts at 10:11
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**
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
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.
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
@@hartoflearning so terminal is CMD? Thank you I thought it's different program.
@@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."
Thanks bu ı have a problem :My content starts with tags, how can I transfer them without losing style properties?
Is it possible to get the Text out from a Shape?
Nice work . How can I write in txt format document like Notepad ? Thnx Bro .
why are add_heading, add_paragraph, add_run etc. not highlighted in my vs code editor?
Because python-docx is garbage
How can I create a hyperlink in the document?
How to set column width
Great! Super useful for automation
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?
Why is the intelisense in my vscode not working? I can't see the tips for functions...
Hi!Can we automate with this workflow?
how to extract the hyperlinks from the document? any suggestion?
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.
File is show error when run from V.S code. Is there any extension that should be downloaded in V.S code?
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
I enjoy the tut, tell us about find and replace text.
Incredibly useful, thank you very very much !!!!!
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
CAN WE COUNT NUMBER PAGES PRESENT IN DOCX FILE IN PYTHON SCRIPT
Hey, how can we insert one document file into another document file using Python ?
That was a cool video, thank you!
Little exaggerating till "we gonna use an external Library called ...." . But what ever ... Your contents are "PAKKA" 🔥 and the selection of subject
Isn't there a run.text property?
Can we keep the word file
Open while the code runs to see if everything is happening correctly
Would love to see more codewar videos.
theres a new release of python docx. could create a video on that
please
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!
Bro i am not able to make a new file in python
I got error messages. It didn’t recognize pip.
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
Thanks for the video, this is incredible useful
Great video!
How to split word document page by page using python? any one have code of this please let me know reply me here
Thanks
brilliant.
Thank you!
I use odfpy, which lets you read and write documents conforming to ISO 26300. That’s a *proper* document standard.
8:41
Thanks
Thx . : )
Err, why not just use word??
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?
@@NeuralNine point taken, also thanks for your work.
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')
This is the real mission man... Keep it up❤