Tagged Questions
0
votes
1answer
35 views
Can't parse a second table with beautifulsoup even if the first one works?
I am trying to parse tables using beautifulsoup. The first one on my page was easy but I cannot parse a similar table on the same page. I do not understand why.
Here is the code. Thanks in advance ...
-6
votes
1answer
47 views
How do I parse this python string?
<a href="index.php?c=playerview&P=1089&LS=100"> \n', ' \n','\', \' Zeppelin-\\n\', \'\\n", \' <td class="stats" colspan="1"valign="top"> \\n\', " \\\\n\', \' ...
0
votes
0answers
36 views
Getting only data out of HTML page in python
Im working on a project for which I need the content of an HTML page given ts url.
Im doing something like this
con=urllib.request.urlopen(url)
a=con.read()
con.close()
soup = BeautifulSoup(a)
...
0
votes
1answer
51 views
Parsing Table With Beautiful Soup
Im writing a program that goes to my school grades site and takes my grades and makes them my desktop background but once i get to my grades i cant get how to parse them out of the large table
Here ...
0
votes
0answers
21 views
Parse GeoRSS Feed Using BeautifulSoup
Novice Python user here. I'm sure there is a relatively straight forward way to do this, but I've lost some hair trying to figure it out. I would like to parse this site: ...
0
votes
1answer
40 views
BeautifulSoup not parsing arbitrary XML? For example - if there are tags called <body>
Working on parsing an xml file with records like:
<Message>
<Subject>some text</Subject>
<Body>some text</Body>
</Message>
but instead of "some text" on ...
1
vote
1answer
71 views
Html parsing with Beautiful Soup returns empty list
I have now idea why this piece of code, does not work with this particular site. In other cases it works ok.
url = "http://www.i-apteka.pl/search.php?node=443&counter=all"
content = ...
0
votes
1answer
52 views
BeautifulSoup Error in Python 3.3
I'm just trying to parse this site and I keep getting errors using BeautifulSoup. Can someone help me and identify the problem?
import urllib
import urllib.request
import beautifulsoup
html = ...
0
votes
0answers
37 views
Faster webscraping method than BeautifulSoup
I have created a simple python script that scrapes about 4 separate web page tables and creates a "master" .csv file. Right now I'm calling on a script using BeautifulSoup, that dreeves wrote, to do ...
0
votes
1answer
34 views
BeautifulSoup python throwing errno22 error invalidmode ('r')
I am trying to write an image archiver of sorts in python that downloads images from a specific site, and I keep getting an ioerror errno22 invalid mode ('r') or filename error that appears on my ...
0
votes
1answer
83 views
python parsing with beautiful soup
I have a question regarding HTML parsing with BeautifulSoup. The website I am trying to parse is this one: ...
0
votes
1answer
54 views
Parsing tags with BeautifulSoup
I am stuck with a python programming problem regarding BeautifulSoup.
At first, I needed to create a function that would extract all tags from source page of a webpage. I did this as follows:
...
1
vote
1answer
76 views
Extracting strings from html file using Python (beautifulsoup?)
There is a html file saved on my harddrive, and I need to extract the strings displayed on the html page and save them into a text file using python.
html representation with tags, etc:
...
1
vote
1answer
149 views
Beautiful Soup 4 for python 3 [closed]
Does anyone know where I could find a video tutorial on the use of python 3 with Beautifulsoup 4? I really need to know how to use it so that I can write a script with it. Thanks in advance!
5
votes
1answer
51 views
how to build html5lib parser to deal with a mixture of xml and html tags
I am new to BeautifulSoup and I am learning how to solve my parsing tasks with it.
My html file consists of many individual documents downloaded as a batch from lexisnexis (legal database). My first ...
1
vote
1answer
78 views
Python/BeautifulSoup Parsing HTML Fractions
Questions
Why does is the output in the final two cases BOTH unicode, but in one case it shows the fraction, and in the other it shows some other code representing the fraction?
What is the cleanest ...
4
votes
2answers
146 views
Parsing Web Page's Search Results With Python
I recently started working on a program in python which allows the user to conjugate any verb easily. To do this, I am using the urllib module to open the corresponding conjugations web page. For ...
0
votes
0answers
76 views
What is the most powerful and simplest XML parser for python? [closed]
I am used to using Nokogiri with Ruby, but am looking to try out some python and wondering what is a nice XML parser in Python? I've looked at beautiful soup, but that seems more geared towards HTML, ...
0
votes
1answer
83 views
Parsing errors with BeautifulSoup4 & Python 3.3
Running this code:
from bs4 import BeautifulSoup
soup = BeautifulSoup (open("my.html"))
print(soup.prettify())
Produces this error:
Traceback (most recent call last):
File "soup.py", line 5, in ...
1
vote
1answer
117 views
Parsing XML RSS feed byte stream for <item> tag
I'm attempting to parse an RSS feed for the first instance of an element "".
def pageReader(url):
try:
readPage = urllib2.urlopen(url)
except urllib2.URLError, e:
# print 'We failed to reach a ...
0
votes
1answer
138 views
< > changed to < and > while parsing html with beautifulsoup in python
While processing html using Beautifulsoup, the < and > were converted to <and >, since the tag anchor were all converted, the whole soup lost its structure, any suggestion?
2
votes
1answer
280 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 ...
2
votes
2answers
73 views
Parsing strange web page - multiple html tags
I'm trying to parse a quite strange page. Here's a simplified version:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
...
0
votes
3answers
116 views
Parsing HTML with Python 2.7
Evening folks (or morning depending on where you are :) ).
I'm looking to parse a webpage which contains multiple segments similar to the below:-
> <p><a ...
-1
votes
1answer
70 views
Extract Options From Dropdown List Extracted From Website
I've been trying (unsuccessfully) to solve this problem for a few hours and need some help. I used Firebug to extract a couple hundred lines of HTML that look like this:
<option ...
0
votes
2answers
74 views
Parse Solr output in python
I am trying to parse a solr output of the form:
<doc>
<str name="source">source:A</str>
<str name="url">URL:A</str>
<date ...
0
votes
2answers
101 views
beautifulsoup find_all() class shortcut doesn't work
I am trying to find all p tags with the class column.
<p class="column">This is a column</p>
<p class="column">More columns heh</p>
I tried doing:
...
3
votes
2answers
207 views
How to parse XML in Python and LXML?
Here's my project: I'm graphing weather data from WeatherBug using RRDTool. I need a simple, efficient way to download the weather data from WeatherBug. I was using a terribly inefficient ...
0
votes
1answer
93 views
How do you search within a <span> tag for a specific “class=id” type attribute with Beautiful soup?
I'm trying to scrape a page with BeautifulSoup which has the general format of the following:
<span class="ID1"> TEXT </span>
<span class="ID2"> TEXT2 </span>
These are all ...
0
votes
1answer
80 views
scrapy not parsing some url characters
I have this string in the href of a tag -
member.php?mode=&g=user&start=100
Now my BeautifulSoup is parsing it as -
memberlist.php?mode=&g=user&start=100
which is not giving ...
0
votes
1answer
132 views
BeautifulSoup, where are you putting my HTML?
I'm using BS4 with python2.7. Here's the start of my code (Thanks root):
from bs4 import BeautifulSoup
import urllib2
f=urllib2.urlopen('http://yify-torrents.com/browse-movie')
html=f.read()
...
0
votes
2answers
684 views
Python, parsing html
Thanks to the kind users of this site, I have some idea of how to use re as an alternative to a non-standard python module so that my script will work with minimum over-hang. Today, I've been ...
0
votes
1answer
64 views
Will I have more control over my spider if I use lxml over BeautifulSoup? [closed]
I am learning to make spiders and crawlers. This spidering is my passion and I am going to do that for a long time. For parsing I am thinking of using BeautifulSoup. But some people say that if I use ...
1
vote
1answer
46 views
Finding a specific url in HTML
i'm new member sorry about my english but it isn't my first language.
I would make a python program that extract a specific url from a html page (http://www.kernel.org/pub/linux/kernel/v3.0/). I was ...
1
vote
1answer
140 views
How to split multiline string to array
I use this code:
from bs4 import BeautifulSoup
parser = BeautifulSoup(remote_data)
parse_data = parser.find_all('a')
for atag_data in parse_data:
URL_list = atag_data.get('href')
When i try to ...
1
vote
1answer
459 views
Beautiful Soup find children for particular div
I have am trying to parse a webpage that looks like this with Python->Beautiful Soup:
I am trying to extract the contents of the highlighted td div. Currently I can get all the divs by
alltd = ...
0
votes
3answers
204 views
Running a Python script for the first time. Using terminal to see output?
I'm following a tutorial on creating a chlerograph map using python.
The tutorial is here: http://flowingdata.com/2009/11/12/how-to-make-a-us-county-thematic-map-using-free-tools/
Following the ...
0
votes
2answers
281 views
Beautiful soup, html table parsing
I am currently having a bit of an issue trying to parse a table into an array.
I have a simple table (HERE) which I need to parse with BS4 and put the cell contents into an array. What makes things ...
0
votes
2answers
186 views
How to parse and delete a text message with pygooglevoice?
I'm trying to utilize pygooglevoice to receive a message and then immediately delete it by its id using delete() but I can't figure it out.
Here is the documentation: ...
0
votes
3answers
992 views
BeautifulSoup can't parse a webpage?
I am using beautiful soup for parsing webpage now, I've heard it's very famous and good, but it doesn't seems works properly.
Here's what I did
import urllib2
from bs4 import BeautifulSoup
page = ...
1
vote
2answers
178 views
Get only the first link of a URLs list with BeautifulSoup
I parsed an entire HTML file, extracting some URLs with Beautifulsoup module in Python, with this peace of code:
for link in soup.find_all('a'):
for line in link :
if "condition" in line ...
1
vote
1answer
98 views
Parsing HTML a convoluted Table w/ BeautifulSoup
I am trying to create a csv file from NOAA data from their http://www.srh.noaa.gov/data/obhistory/PAFA.html.
I tried working with the table tag,but it failed. So I am trying to do it by identifying ...
0
votes
2answers
162 views
Split a HTML document at tag - Python
What would be the best way to split a HTML document/string based on the occurrence of the tag? I have given the solution I currently have below but it seems quite cumbersome and isn't all that easy ...
5
votes
2answers
6k views
How to install beautiful soup 4 with python 2.7 on windows
I have windows vista with Python 2.7. I would like to install BeautifulSoup 4 but apparently I can't install Beautiful Soup just by copying the file into the site-packages directory.
I have to install ...
0
votes
2answers
448 views
BeautifulSoup .text method returns text without separators (\n, \r etc)
I've tryed to parse song lyrics from biggest russian lyrics site http://amalgama-lab.com and save lyrics (translated and original) into audio list from my Vkontakte account(sadly, amalgama doesn't ...
-2
votes
1answer
111 views
Python- How to delete all data between two constant delimiters— parsing noisy HTML data
I'm parsing Wikipedia plain text data. For whatever reason, appended to the end of each page, is the following text:
af:Vlermuis
ang:Hreaðemūs
ar:خفاش
an:Chiroptera
ast:Esperteyu
gn:Mbopi
ay:Chiñi
...
0
votes
1answer
62 views
BS doesn't “see” all tables?
I'm using BeautifulSoup to parse through data on baseball-reference.com and it works find for every page, except for a few like this one Same pages (different data) work perfectly, ie this one.
I'm ...
0
votes
2answers
461 views
Pull Tag Value using BeautifulSoup
Can someone direct me as how to pull the value of a tag using BeautifulSoup? I read the documentation but had a hard time navigating through it. For example, if I had:
<span title="Funstuff" ...
2
votes
1answer
126 views
How to extract value of attribute in a nested tag structure using beautifulsoup?
I have a html file which looks something similar to this :
<html>
...
<li class="not a user"> </li>
<li class="user">
<a href="abs" ...> </a>
</li>
<li ...
2
votes
4answers
381 views
How do I get raw text with beautifulsoup?
I have a xml like this:
<link>
www.link1.com
</link>
<link>
www.link2.com
</link>
I have tried this code:
from BeautifulSoup import BeautifulStoneSoup
soup = ...


