Tagged Questions
2
votes
1answer
284 views
How to extract tags from HTML using Beautifulsoup in Python
I am trying to parse through an HTML page which simplified looks like this:
<div class="anotherclass part"
<a href="http://example.com" >
<div class="column ...
0
votes
1answer
73 views
Python: trying to email <p> contents of article
The below code is extracting the top headlines from ESPN/college-football. I go into the article itself and extract the p contents and they print to the console just fine but I would also like to ...
1
vote
1answer
67 views
Python: trying to email href
The below code is extracting the top headlines from ESPN/college-football. I can grab the title of the article and the link. I can print both of those but I would also like to email them. I can get ...
1
vote
2answers
181 views
Python web scraping with regex
Could someone assist me with a bit of code I'd like to build to pull stats from a game?
I can put the html into BeautifulSoup, but I don't know how to properly format the regex to get at the specific ...
1
vote
1answer
286 views
UnicodeWarning: Unicode equal comparison. How to replace non-standard characters in NavigableString dataype?
I'm scraping a website with Python 2.7 using BeautifulSoup. Here's my code:
# -*- coding: utf-8 -*-
from BeautifulSoup import BeautifulSoup
import urllib
import json
url = 'http://www.website.com'
...
0
votes
1answer
209 views
Beautifulsoup unable to extract data using attrs=class
I am extracting data for a research project and I have sucessfully used findAll('div', attrs={'class':'someClassName'}) in many websites but this particular website,
WebSite Link
doesn't return any ...
1
vote
1answer
777 views
BeautifulSoup: Extract img alt data
I have following image html and I am trying to parse information that is in alt. Currently I am able to successfully extract images.
html (What I currently parse
<img class="rslp-p" alt="Sony ...
0
votes
1answer
494 views
Find next siblings until a certain one using beautifulsoup
The webpage is something like this:
<h2>section1</h2>
<p>article</p>
<p>article</p>
<p>article</p>
<h2>section2</h2>
...
0
votes
0answers
97 views
BeautifulSoup: Skip html element
I have the following html structure: This is only a section of it but I think this snippet is good enough to explain my problem.
<tr>
<td> Color Digest </td>
<td> AgAkAZwCJgMZ ...
1
vote
1answer
421 views
BeautifulSoup: How to extract data after specific html tag
I have following html and I am trying to figure out how exactly I can tell BeautifulSoup to extract td after certain html element. In this case I want to get data in <td> after <td>Color ...
0
votes
1answer
442 views
Why Beautiful Soup cannot display all <td> data in the tables?
I tried to page scrape wikipedia a week ago. But i could not figure out why Beautiful Soup will only show some string from the table column and show "none" for other table column.
NOTE: the table ...
0
votes
1answer
370 views
detect and change website encoding in python
I have a problem with website encoding. I maked a program to scrape a website but i didn't have successfully with changing encoding of readed content. My code is:
import ...
0
votes
1answer
459 views
Extract Google Search Result Redirects
I have read several stackoverflow posts on how to extract the URLs of Google search results, and have written a similar implementation using python, curl and beautifulsoup.
My question is, how can I ...
1
vote
2answers
1k views
Using SoupStrainer to parse selectively
Im trying to parse a list of video game titles from a shopping site. however as the item list is all stored inside a tag .
This section of the documentation supposedly explains how to parse only ...
-1
votes
4answers
128 views
How to I make the result of this a variable?
right now its set up to write to a file, but I want it to output the value to a variable. not sure how.
from BeautifulSoup import BeautifulSoup
import sys, re, urllib2
import codecs
woof1 = ...