0
votes
1answer
14 views

How to skip through same tags in BeautifulSoup - Python

I am currently writing code for Scrapers and more and more become a fan of Python and especially BeautifulSoup. Still... When parsing through html I came across a difficult part that I could only use ...
0
votes
0answers
34 views

Parsing html elements using BeautifulSoup

Suppose I have: <tr> <td class="prodSpecAtribute">word</td> <td colspan="5"> <a href="http://www.cmegroup.com/clearing/trading-practices/CMEblock-trade.html" ...
0
votes
1answer
27 views

Parsing rows of information from html using python

I wanted to find a way to parse information from: <tr> <td class="prodSpecAtribute">Rulebook Chapter</td> <td colspan="5"> <a ...
0
votes
1answer
40 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 ...
0
votes
1answer
43 views

simplify this python generation

I am new to python. Is there a way to simplify this: def getDivs(): divs = soup.findAll(name = "div", attrs = {"class" : "resultCell"}, recursive = True) for div in divs: h2 = ...
1
vote
2answers
47 views

BeautifulSoup drops text when fixing up broken markup

I'm pretty new to Python, but what the heck... This is kind of a weird question so I will do my best to explain it as throughly as I can: I'm busy trying to write a script in Python that checks a ...
0
votes
1answer
44 views

Python 'get_text()' not working

I am trying to compile the following code from parsing html but i come up with an error: import string, urllib2, urlparse, csv, sys from urllib import quote from urlparse import urljoin from bs4 ...
1
vote
0answers
71 views

How to parse hindi font from html using BeautifulSoup?

I want to get the contents of a tag using using BeautifulSoup. My code : html= "<html><body><td class="HindiTextGray" align="left" valign="top"> <br /> सूरत। ...
0
votes
1answer
81 views

BeautifulSoup Tag Removal

I have am looking to parse a HTML table with Python/BeautifulSoup... This is my first attempt at coding anything in Python, so its probably not the most efficient. I grabbed a function another post ...
1
vote
1answer
59 views

Beautiful soup failing to parse this HTML

We're using Beautiful Soup to parse many websites successfully, but a few are given us problems. An example is this page: ...
1
vote
0answers
136 views

shell script behaves differently from Automator

I have a couple scripts to clean up some generated HTML; a python script using BeautifulSoup, and a Ruby script. These remove unneeded tags and attributes, transform symbols to html encodings, get ...
1
vote
2answers
151 views

Desperate parsing HTML with BeautifulSoup in Python

I've been looking through a lot of questions related with parsing HTML with Python using BeautifulSoup, but I can't manage to get what I need. This is a little module of a personal app I want to do, ...
0
votes
3answers
95 views

parsing HTML using BeautifulSoup

I want to read a list on a webpage using the BeautifulSoup module in python. The HTML code is as follows : ... <ul id="sidebarmenu1"> <li><a ...
0
votes
0answers
102 views

Using BeautifulSoup's replaceWith to replace all 'a' tags with tag content

EDIT: Basically, I'm trying to perform a Decompose, but instead of removing a tag and completely destroying its contents, I'd like to replace the tag with its contents. I'd like to replace all 'a' ...
0
votes
1answer
57 views

python- extract html table without lossing axis titles

Q1. Is there any way to extract data from the table but still able to track back the axis titles? Q2. which approach will be better to extract data from a html table? HTMLParser or beautifulsoup or ...
0
votes
0answers
44 views

BeautifulSoup and tags

I'm trying to extract some urls using BeautifulSoup. I'm using this code: url = 'http://www.elcachondeo.cl/?cat=188' data = urllib2.urlopen(url).read() soup = BeautifulSoup(data) xa = ...
0
votes
1answer
89 views

BeautifulSoup Table Processing

I'm in a situation where I have to do something a touch hacky. The incoming data is not under my control, so a solution is NOT "just store it more effectively", as much as I'd like that to be the ...
0
votes
1answer
67 views

Issue with scraping data using indexing from html structure

I am scraping data from following html structure from 30-40 webpages like these https://www.o2.co.uk/shop/tariffs/sony/xperia-z-purple/ : <td ...
0
votes
1answer
51 views

How to select specific content from table type structure in html

HTML structure I am working on is: <tr showhide="show" style="display: table-row; "> <td class="monthlyCost">£18<span>.50</span></td> ...
1
vote
0answers
130 views

BeautifulSoup does not Parse as Expected

I am using BeautifulSoup 4 for crawling a web site and generated a script that works like a charm. But when I changed computers and tried the script on another one, it suddenly started to give out an ...
0
votes
1answer
101 views

Split html document in pieces parsing html comments with BeautifulSoup

This is a pretty small question that has been almost resolved in a previous question. Problem is that right now i have and array of comments, but it does not quite what I need. I get an array of ...
-1
votes
1answer
74 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 ...
1
vote
2answers
119 views

How to save back changes made to a HTML file using BeautifulSoup in Python?

Python noob here... I have the script below, which modifies the hrefs for a html file (in the future it will be a list of HTML files in a directory). Using beautifulSoup I managed to access the tag ...
0
votes
1answer
120 views

How to strip entire HTML, CSS and JS code or tags from HTML page in python [duplicate]

Possible Duplicate: BeautifulSoup Grab Visible Webpage Text Web scraping with Python Say I am a very complex HTML page consisting usual HTML tags, CSS & JS in the middle. We might see ...
1
vote
1answer
187 views

Python BeautifulSoup HTML Parsing to get Text

I have an HTML page that is formed like the following <section class="entry-content"> <p>...</p> <p>...</p> <p>...</p> </section> I am ...
1
vote
1answer
34 views

Issue with finding parent of a particular tag in html using python

I am trying to fetch parent element of a particular tag using below mentioned code: # -*- coding: cp1252 -*- import csv import urllib2 import sys import time from bs4 import BeautifulSoup from ...
0
votes
1answer
145 views

Issue with html tags while scraping data using beautiful soup

Common piece of code: # -*- coding: cp1252 -*- import csv import urllib2 import sys import time from bs4 import BeautifulSoup from itertools import islice page = ...
1
vote
2answers
83 views

Parse broken html page in python

I am trying to parse a broken html page which has a comment inside anther comment and all the famous htmlparsers like beautifulsoup, lxml and HTMLParser are giving syntax errors. Following is the ...
0
votes
1answer
181 views

Parse HTML from DOM (Not static HTML)

Trying to parse HTML data from the DOM, when I use Chrome's Developer Tools I can see that data in the console. When I save the page as HTML locally and search for the the targeted data it can't be ...
0
votes
0answers
80 views

Python encode type error

I'm using beautifulsoup and lxml to parse a html page. In the beginning I'm using the following code for item in soup.find_all("td", { "class" : re.compile(r"^(s|sb)$") }): data_item = ...
0
votes
2answers
710 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 ...
2
votes
1answer
201 views

Iterate through elements in html tree using BeautifulSoup, and produce an output that maintains the relative position of each element? in Python

I have this code that does what I need it to do using Jsoup in Java Elements htmlTree = doc.body().select("*"); Elements menuElements = new Elements(); for(Element element : htmlTree) { ...
1
vote
2answers
55 views

Sequentially grouping html content by tag

I have a html file similar to the following: <h2>section 1</h2> <p>para 1</p> <p>para 2</p> <p>para 3</p> <h2>section ...
3
votes
1answer
266 views

How to get multiple class in one query using Beautiful Soup

I want to find td with class="s" or class="sb" in the following html <tr bgcolor="#e5e5f3"><td class="sb" width="200" align="left">test1</td><td class="sb" ...
1
vote
2answers
257 views

How to get the option text using BeautifulSoup

I want to using BeautifulSoup to get the option text in the following html. For example: I'd like to get 2002/12 , 2003/12 etc. <select id="start_dateid"> <option ...
2
votes
1answer
50 views

How to select everything but a certain html element using beautifulsoup4?

Example: import bs4 html = ''' <div class="short-description std "> <em>Android Apps Security</em> provides guiding principles for how to best design and develop Android apps with ...
-1
votes
1answer
343 views

How to use BeautifulSoup and lxml together?

I'm very new in Python. How to use BeautifulSoup and lxml together? It is recommended to use lxml as parser in beautifulsoup website def get_html(): from bs4 import BeautifulSoup ...
2
votes
2answers
55 views

Saving <br/> in beautifulsoup

I'm creating parser, and i have following construction: quotes = soup.findAll('div',{'class':'text'}) But it's strip all html tags(like br). How I can change it?
0
votes
1answer
75 views

Calculate a text-position inside a div element into the according position in HTML with Python

I need to find a way on calculating the position (that means the index of the character position) of text located in a div-element into the according position of HTML-Code. This is necessary because I ...
2
votes
2answers
330 views

How to extract a JSON object that was defined in a HTML page javascript block using Python?

I am downloading HTML pages that have data defined in them in the following way: ... <script type= "text/javascript"> window.blog.data = {"activity":{"type":"read"}}; </script> ... I ...
2
votes
2answers
46 views

Using Python & Beautiful Soup, can I obtain a tag list filtered by whether background attr is set?

I would like to obtain a list of tags from an html document, where the background attribute is set. So for example: html="<div> <div></div> <table ...
2
votes
2answers
560 views

Extracting selected columns from a table using BeautifulSoup

I am trying to extract the first and third columns of this data table using BeautifulSoup. From looking at the HTML the first column has a <th> tag. The other column of interest has as ...
0
votes
2answers
81 views

How to structure Python function so that it continues after error?

I am new to Python, and with some really great assistance from StackOverflow, I've written a program that: 1) Looks in a given directory, and for each file in that directory: 2) Runs a ...
2
votes
2answers
274 views

Parse each file in a directory with BeautifulSoup/Python, save out as new file

New to Python & BeautifulSoup. I have a Python program that opens a file called "example.html", runs a BeautifulSoup action on it, then runs a Bleach action on it, then saves the result as file ...
0
votes
1answer
269 views

How to scrape multiple HTML tables with Beautiful Soup parser?

sorry for the stupid question ... just started using python (but I love it). The problem: I want to scrape data from the center for documentation of violism in syria. currently I'm using this scraper ...
0
votes
1answer
433 views

beautifulsoup findAll find_all

I would like to parse a html file with Python, and the module I used is beautifulsoup. After I used it, something strange happened.It is said that the function "find_all" is same as "findAll", but ...
1
vote
1answer
134 views

How can I store the results of parsed html?

I'm using Python's HTMLParser and BeautifulSoup to parse Yahoo finance data. There is a very nice package written to do this already but it doesn't get "tangbile price/book value", which is to say ...
2
votes
4answers
632 views

How to get all text between just two specified tags using BeautifulSoup?

html = """ ... <tt class="descname">all</tt> <big>(</big> <em>iterable</em> <big>)</big> <a class="headerlink" href="#all" title="Permalink to this ...
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 ...
1
vote
2answers
337 views

Find on beautiful soup in loop returns TypeError

I'm trying to scrape a table on an ajax page with Beautiful Soup and print it out in table form with the TextTable library. import BeautifulSoup import urllib import urllib2 import getpass import ...

1 2 3