BeautifulSoup, select text to extract
I would like to scrape some quotes and authors but haven't found a way to separate the quote from the author during scraping.
import requests
from bs4 import BeautifulSoup
#url = 'https://www.goodreads.com/quotes'
#r = requests.get(url)
#soup = BeautifulSoup(r.content, 'html.parser')
html = """
<div class="quoteText">“Insanity is doing the same thing, over and over again, but expecting different results.” <br> ―
<span class="authorOrTitle">Narcotics Anonymous</span>
</div>
"""
soup = BeautifulSoup(html, 'html.parser')
quotes = soup.find_all('div', {'class': 'quoteText'})
for quote in quotes:
if quote.text is not None:
print(quote.text)
python python-3.x web-scraping beautifulsoup
add a comment |
I would like to scrape some quotes and authors but haven't found a way to separate the quote from the author during scraping.
import requests
from bs4 import BeautifulSoup
#url = 'https://www.goodreads.com/quotes'
#r = requests.get(url)
#soup = BeautifulSoup(r.content, 'html.parser')
html = """
<div class="quoteText">“Insanity is doing the same thing, over and over again, but expecting different results.” <br> ―
<span class="authorOrTitle">Narcotics Anonymous</span>
</div>
"""
soup = BeautifulSoup(html, 'html.parser')
quotes = soup.find_all('div', {'class': 'quoteText'})
for quote in quotes:
if quote.text is not None:
print(quote.text)
python python-3.x web-scraping beautifulsoup
add a comment |
I would like to scrape some quotes and authors but haven't found a way to separate the quote from the author during scraping.
import requests
from bs4 import BeautifulSoup
#url = 'https://www.goodreads.com/quotes'
#r = requests.get(url)
#soup = BeautifulSoup(r.content, 'html.parser')
html = """
<div class="quoteText">“Insanity is doing the same thing, over and over again, but expecting different results.” <br> ―
<span class="authorOrTitle">Narcotics Anonymous</span>
</div>
"""
soup = BeautifulSoup(html, 'html.parser')
quotes = soup.find_all('div', {'class': 'quoteText'})
for quote in quotes:
if quote.text is not None:
print(quote.text)
python python-3.x web-scraping beautifulsoup
I would like to scrape some quotes and authors but haven't found a way to separate the quote from the author during scraping.
import requests
from bs4 import BeautifulSoup
#url = 'https://www.goodreads.com/quotes'
#r = requests.get(url)
#soup = BeautifulSoup(r.content, 'html.parser')
html = """
<div class="quoteText">“Insanity is doing the same thing, over and over again, but expecting different results.” <br> ―
<span class="authorOrTitle">Narcotics Anonymous</span>
</div>
"""
soup = BeautifulSoup(html, 'html.parser')
quotes = soup.find_all('div', {'class': 'quoteText'})
for quote in quotes:
if quote.text is not None:
print(quote.text)
python python-3.x web-scraping beautifulsoup
python python-3.x web-scraping beautifulsoup
asked Jan 18 at 16:14
ReneRene
231111
231111
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You can try to use stripped_strings
property:
for quote in quotes:
if quote.text is not None:
strings = [string for string in quote.stripped_strings]
quote_body = strings[0]
quote_author = strings[2]
print(quote_body)
print(quote_author)
1
Very handy. I didn't know about this +
– QHarr
Jan 18 at 17:56
add a comment |
import requests
from bs4 import BeautifulSoup
#url = 'https://www.goodreads.com/quotes'
#r = requests.get(url)
#soup = BeautifulSoup(r.content, 'html.parser')
html = """
<div class="quoteText">“Insanity is doing the same thing, over and over again, but expecting different results.” <br> ―
<span class="authorOrTitle">Narcotics Anonymous</span>
</div>
"""
soup = BeautifulSoup(html, 'html.parser')
quotes = soup.find_all('div', {'class': 'quoteText'})
for quote in quotes:
if quote.text is not None:
quote_ = quote.text
quote_data = quote_.split(" ―")
quote_without_author = quote_data[0]
quote_author = quote_data[1]
print(quote_without_author.strip())
print(quote_author.strip())
You can split the data on ―, so is the [0] element your quote and [1] your author.
Output:
“Insanity is doing the same thing, over and over again, but expecting different results.”
Narcotics Anonymous
add a comment |
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%2f54257688%2fbeautifulsoup-select-text-to-extract%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can try to use stripped_strings
property:
for quote in quotes:
if quote.text is not None:
strings = [string for string in quote.stripped_strings]
quote_body = strings[0]
quote_author = strings[2]
print(quote_body)
print(quote_author)
1
Very handy. I didn't know about this +
– QHarr
Jan 18 at 17:56
add a comment |
You can try to use stripped_strings
property:
for quote in quotes:
if quote.text is not None:
strings = [string for string in quote.stripped_strings]
quote_body = strings[0]
quote_author = strings[2]
print(quote_body)
print(quote_author)
1
Very handy. I didn't know about this +
– QHarr
Jan 18 at 17:56
add a comment |
You can try to use stripped_strings
property:
for quote in quotes:
if quote.text is not None:
strings = [string for string in quote.stripped_strings]
quote_body = strings[0]
quote_author = strings[2]
print(quote_body)
print(quote_author)
You can try to use stripped_strings
property:
for quote in quotes:
if quote.text is not None:
strings = [string for string in quote.stripped_strings]
quote_body = strings[0]
quote_author = strings[2]
print(quote_body)
print(quote_author)
answered Jan 18 at 16:28
AnderssonAndersson
38.5k103266
38.5k103266
1
Very handy. I didn't know about this +
– QHarr
Jan 18 at 17:56
add a comment |
1
Very handy. I didn't know about this +
– QHarr
Jan 18 at 17:56
1
1
Very handy. I didn't know about this +
– QHarr
Jan 18 at 17:56
Very handy. I didn't know about this +
– QHarr
Jan 18 at 17:56
add a comment |
import requests
from bs4 import BeautifulSoup
#url = 'https://www.goodreads.com/quotes'
#r = requests.get(url)
#soup = BeautifulSoup(r.content, 'html.parser')
html = """
<div class="quoteText">“Insanity is doing the same thing, over and over again, but expecting different results.” <br> ―
<span class="authorOrTitle">Narcotics Anonymous</span>
</div>
"""
soup = BeautifulSoup(html, 'html.parser')
quotes = soup.find_all('div', {'class': 'quoteText'})
for quote in quotes:
if quote.text is not None:
quote_ = quote.text
quote_data = quote_.split(" ―")
quote_without_author = quote_data[0]
quote_author = quote_data[1]
print(quote_without_author.strip())
print(quote_author.strip())
You can split the data on ―, so is the [0] element your quote and [1] your author.
Output:
“Insanity is doing the same thing, over and over again, but expecting different results.”
Narcotics Anonymous
add a comment |
import requests
from bs4 import BeautifulSoup
#url = 'https://www.goodreads.com/quotes'
#r = requests.get(url)
#soup = BeautifulSoup(r.content, 'html.parser')
html = """
<div class="quoteText">“Insanity is doing the same thing, over and over again, but expecting different results.” <br> ―
<span class="authorOrTitle">Narcotics Anonymous</span>
</div>
"""
soup = BeautifulSoup(html, 'html.parser')
quotes = soup.find_all('div', {'class': 'quoteText'})
for quote in quotes:
if quote.text is not None:
quote_ = quote.text
quote_data = quote_.split(" ―")
quote_without_author = quote_data[0]
quote_author = quote_data[1]
print(quote_without_author.strip())
print(quote_author.strip())
You can split the data on ―, so is the [0] element your quote and [1] your author.
Output:
“Insanity is doing the same thing, over and over again, but expecting different results.”
Narcotics Anonymous
add a comment |
import requests
from bs4 import BeautifulSoup
#url = 'https://www.goodreads.com/quotes'
#r = requests.get(url)
#soup = BeautifulSoup(r.content, 'html.parser')
html = """
<div class="quoteText">“Insanity is doing the same thing, over and over again, but expecting different results.” <br> ―
<span class="authorOrTitle">Narcotics Anonymous</span>
</div>
"""
soup = BeautifulSoup(html, 'html.parser')
quotes = soup.find_all('div', {'class': 'quoteText'})
for quote in quotes:
if quote.text is not None:
quote_ = quote.text
quote_data = quote_.split(" ―")
quote_without_author = quote_data[0]
quote_author = quote_data[1]
print(quote_without_author.strip())
print(quote_author.strip())
You can split the data on ―, so is the [0] element your quote and [1] your author.
Output:
“Insanity is doing the same thing, over and over again, but expecting different results.”
Narcotics Anonymous
import requests
from bs4 import BeautifulSoup
#url = 'https://www.goodreads.com/quotes'
#r = requests.get(url)
#soup = BeautifulSoup(r.content, 'html.parser')
html = """
<div class="quoteText">“Insanity is doing the same thing, over and over again, but expecting different results.” <br> ―
<span class="authorOrTitle">Narcotics Anonymous</span>
</div>
"""
soup = BeautifulSoup(html, 'html.parser')
quotes = soup.find_all('div', {'class': 'quoteText'})
for quote in quotes:
if quote.text is not None:
quote_ = quote.text
quote_data = quote_.split(" ―")
quote_without_author = quote_data[0]
quote_author = quote_data[1]
print(quote_without_author.strip())
print(quote_author.strip())
You can split the data on ―, so is the [0] element your quote and [1] your author.
Output:
“Insanity is doing the same thing, over and over again, but expecting different results.”
Narcotics Anonymous
answered Jan 18 at 16:17
madik_atmamadik_atma
305116
305116
add a comment |
add a comment |
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%2f54257688%2fbeautifulsoup-select-text-to-extract%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