How to extract text from embedded document in Python
I want to extract text from some URLS using Python, but I wasn't able to get anything from BeautifulSoup as the documents' HTML only includes an imbedded ID. Here is an example of a file that I would like to extract the text from: Example
Any ideas on how to extract the text from that URL?
Here is an example of code which just produces gibberish:
r = sessions.get("http://investors.yum.com/Cache/1001242026.PDF? O=PDF&T=&Y=&D=&FID=1001242026&iid=4025819")
html = r.text
soup = BeautifulSoup(html)
text = soup.get_text()
print(text)
python html
|
show 1 more comment
I want to extract text from some URLS using Python, but I wasn't able to get anything from BeautifulSoup as the documents' HTML only includes an imbedded ID. Here is an example of a file that I would like to extract the text from: Example
Any ideas on how to extract the text from that URL?
Here is an example of code which just produces gibberish:
r = sessions.get("http://investors.yum.com/Cache/1001242026.PDF? O=PDF&T=&Y=&D=&FID=1001242026&iid=4025819")
html = r.text
soup = BeautifulSoup(html)
text = soup.get_text()
print(text)
python html
What have you tried so far? Can you show us your code?
– G. Anderson
Nov 27 '18 at 17:44
Edited it to show the method I tried using BeautifulSoup. If you go to the link and inspect, you can see the issue. Instead of having the text within the HTML, it just has a single link.
– Christopher Kardatzke
Nov 27 '18 at 17:55
1
That's not an html page, that's a PDF document. You can use something to pull the document off the site, then use something like pypdf2 to try to parse it
– G. Anderson
Nov 27 '18 at 17:58
Do you know if I'd have to download all the PDFs in order to process them usnig pypdf2? Ideally, I'd like to be able to just grab the text with the URLs, without taking up any disk space.
– Christopher Kardatzke
Nov 27 '18 at 18:21
If you create your parsing as a function, then you can run through the PDFs and parse them in memory
– G. Anderson
Nov 27 '18 at 18:23
|
show 1 more comment
I want to extract text from some URLS using Python, but I wasn't able to get anything from BeautifulSoup as the documents' HTML only includes an imbedded ID. Here is an example of a file that I would like to extract the text from: Example
Any ideas on how to extract the text from that URL?
Here is an example of code which just produces gibberish:
r = sessions.get("http://investors.yum.com/Cache/1001242026.PDF? O=PDF&T=&Y=&D=&FID=1001242026&iid=4025819")
html = r.text
soup = BeautifulSoup(html)
text = soup.get_text()
print(text)
python html
I want to extract text from some URLS using Python, but I wasn't able to get anything from BeautifulSoup as the documents' HTML only includes an imbedded ID. Here is an example of a file that I would like to extract the text from: Example
Any ideas on how to extract the text from that URL?
Here is an example of code which just produces gibberish:
r = sessions.get("http://investors.yum.com/Cache/1001242026.PDF? O=PDF&T=&Y=&D=&FID=1001242026&iid=4025819")
html = r.text
soup = BeautifulSoup(html)
text = soup.get_text()
print(text)
python html
python html
edited Nov 27 '18 at 17:54
Christopher Kardatzke
asked Nov 27 '18 at 17:41
Christopher KardatzkeChristopher Kardatzke
11
11
What have you tried so far? Can you show us your code?
– G. Anderson
Nov 27 '18 at 17:44
Edited it to show the method I tried using BeautifulSoup. If you go to the link and inspect, you can see the issue. Instead of having the text within the HTML, it just has a single link.
– Christopher Kardatzke
Nov 27 '18 at 17:55
1
That's not an html page, that's a PDF document. You can use something to pull the document off the site, then use something like pypdf2 to try to parse it
– G. Anderson
Nov 27 '18 at 17:58
Do you know if I'd have to download all the PDFs in order to process them usnig pypdf2? Ideally, I'd like to be able to just grab the text with the URLs, without taking up any disk space.
– Christopher Kardatzke
Nov 27 '18 at 18:21
If you create your parsing as a function, then you can run through the PDFs and parse them in memory
– G. Anderson
Nov 27 '18 at 18:23
|
show 1 more comment
What have you tried so far? Can you show us your code?
– G. Anderson
Nov 27 '18 at 17:44
Edited it to show the method I tried using BeautifulSoup. If you go to the link and inspect, you can see the issue. Instead of having the text within the HTML, it just has a single link.
– Christopher Kardatzke
Nov 27 '18 at 17:55
1
That's not an html page, that's a PDF document. You can use something to pull the document off the site, then use something like pypdf2 to try to parse it
– G. Anderson
Nov 27 '18 at 17:58
Do you know if I'd have to download all the PDFs in order to process them usnig pypdf2? Ideally, I'd like to be able to just grab the text with the URLs, without taking up any disk space.
– Christopher Kardatzke
Nov 27 '18 at 18:21
If you create your parsing as a function, then you can run through the PDFs and parse them in memory
– G. Anderson
Nov 27 '18 at 18:23
What have you tried so far? Can you show us your code?
– G. Anderson
Nov 27 '18 at 17:44
What have you tried so far? Can you show us your code?
– G. Anderson
Nov 27 '18 at 17:44
Edited it to show the method I tried using BeautifulSoup. If you go to the link and inspect, you can see the issue. Instead of having the text within the HTML, it just has a single link.
– Christopher Kardatzke
Nov 27 '18 at 17:55
Edited it to show the method I tried using BeautifulSoup. If you go to the link and inspect, you can see the issue. Instead of having the text within the HTML, it just has a single link.
– Christopher Kardatzke
Nov 27 '18 at 17:55
1
1
That's not an html page, that's a PDF document. You can use something to pull the document off the site, then use something like pypdf2 to try to parse it
– G. Anderson
Nov 27 '18 at 17:58
That's not an html page, that's a PDF document. You can use something to pull the document off the site, then use something like pypdf2 to try to parse it
– G. Anderson
Nov 27 '18 at 17:58
Do you know if I'd have to download all the PDFs in order to process them usnig pypdf2? Ideally, I'd like to be able to just grab the text with the URLs, without taking up any disk space.
– Christopher Kardatzke
Nov 27 '18 at 18:21
Do you know if I'd have to download all the PDFs in order to process them usnig pypdf2? Ideally, I'd like to be able to just grab the text with the URLs, without taking up any disk space.
– Christopher Kardatzke
Nov 27 '18 at 18:21
If you create your parsing as a function, then you can run through the PDFs and parse them in memory
– G. Anderson
Nov 27 '18 at 18:23
If you create your parsing as a function, then you can run through the PDFs and parse them in memory
– G. Anderson
Nov 27 '18 at 18:23
|
show 1 more comment
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53505267%2fhow-to-extract-text-from-embedded-document-in-python%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53505267%2fhow-to-extract-text-from-embedded-document-in-python%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What have you tried so far? Can you show us your code?
– G. Anderson
Nov 27 '18 at 17:44
Edited it to show the method I tried using BeautifulSoup. If you go to the link and inspect, you can see the issue. Instead of having the text within the HTML, it just has a single link.
– Christopher Kardatzke
Nov 27 '18 at 17:55
1
That's not an html page, that's a PDF document. You can use something to pull the document off the site, then use something like pypdf2 to try to parse it
– G. Anderson
Nov 27 '18 at 17:58
Do you know if I'd have to download all the PDFs in order to process them usnig pypdf2? Ideally, I'd like to be able to just grab the text with the URLs, without taking up any disk space.
– Christopher Kardatzke
Nov 27 '18 at 18:21
If you create your parsing as a function, then you can run through the PDFs and parse them in memory
– G. Anderson
Nov 27 '18 at 18:23