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