0
votes
0answers
13 views

Scrape Javascript from an HTML page using Beautiful Soup

I have Website(http://www.sec.gov/cgi-bin/viewer?action=view&cik=320193&accession_number=0001193125-12-444068&xbrl_type=v) which i need to scrap using Python BeautifulSoup. On the source ...
0
votes
0answers
15 views

'TypeError: expected string or buffer' when performing re.sub on beautiful soup result set iteration

content_a is a beautiful soup result set (ie the type is <class 'bs4.element.ResultSet'>) that is made up of values whose type is <class 'bs4.element.Tag'>. If i print 'content_a' i ...
0
votes
1answer
20 views

how to automate this beautifulsoup import

I am importing links to boxscores from this webpage http://www.covers.com/pageLoader/pageLoader.aspx?page=/data/wnba/teams/pastresults/2012/team665231.html This is how I am doing it now. I get ...
0
votes
1answer
33 views

BeautifulSoup and div value from site using Firefox

After some changes I got thi: import urllib2 from bs4 import BeautifulSoup soup = BeautifulSoup(urllib2.urlopen("http://example.com")) soup.find("div", {"id": "botloc"}) elem = soup.find('div') ...
0
votes
1answer
69 views

pulling links and scraping those pages in python

I would like to scrape some links from this page. http://www.covers.com/pageLoader/pageLoader.aspx?page=/data/wnba/teams/pastresults/2012/team665231.html This gets the links that I want. boxurl = ...
0
votes
2answers
41 views

BeautifulSoup remove special characters of contents of tag

I want to compare a string with the contents of a html page. But the special characters in the HTML page makes this comparison harder. So I want to remove all the special characters and white spaces ...
0
votes
1answer
24 views

Need to find text with RegEx and BeautifulSoup

I'm trying to parse a website to pull out some data that is stored in the body such as this: <body> <b>INFORMATION</b> Hookups: None Group Sites: No Station: No ...
0
votes
1answer
22 views

how to skip action on first value returned from a regex search?

the following: searches contents for spans of class blue grabs the text from the spans (using beautiful soup's get_text method) outputs the values on lines for each line, replaces some text does a ...
1
vote
2answers
104 views

FLIPKART.COM product 'price' and product 'title' extraction using PYTHON

I have written the following Python code to extract the PRICE of the item specified from flipkart.com import urllib2 import bs4 import re item="Wilco Classic Library: Autobiography Of a Yogi ...
0
votes
1answer
44 views

Find all html elements whose contains a specific class

I want BeautifulSoup to find all element in html page whose have a certain class. But they can also have extra classes. For example: soup.findAll('tr', {'class': 'super_class1'}) This code only ...
0
votes
1answer
39 views

How to remove duplicate values from a beautiful soup result set whilst preserving order?

I have a scenario where I am searching through values in a beautiful soup result set and treating them differently depending on their contents, eg: for i in bs_result_set: if 'this unique string' ...
0
votes
1answer
114 views

Flipkart.com product scraping using python. (some issues). Need help ASAP

The following Python module checks if the specified item is present on flipkart.com: import sys import bs4 import re import urllib2 def findItem(itemName): itemName.replace(" ", "+") ...
0
votes
1answer
24 views

Excluding the first match, BeautifulSoup

I'm searching for a tags within a table and I want to exclude the first a instance which is junk. Any solution please? Syntax of the tags is the same so I can't use anything like id=False etc. I ...
0
votes
2answers
136 views

UnicodeEncodeError: 'ascii' codec can't encode character u'\u2026'

I'm learning about urlib2 and beautiful soup and on first tests am getting errors like: UnicodeEncodeError: 'ascii' codec can't encode character u'\u2026' in position 10: ordinal not in range(128) ...
0
votes
1answer
25 views

Handling exception with BeautifulSoup

I am parsing several individual pages with BeautifulSoup. Several pages get parsed and it gets to a point, on a specific site, that the parsing fails. I am looking to extract the following tag: ...
1
vote
1answer
25 views

use beautifulsoup to find all tags with attributes of some form

i need to find all tags which have any mouse event registered inline for example, it should find tags like : <div onmousedown="somefunc()"> Some text here </div> i could check using a ...
0
votes
0answers
65 views

Saving PDF files through callback function in a spider in scrapy

Hi I have written the following code to extract url where pdf file lies and save the pdf through a callback function. But my callback function-save_pdf never gets called. from scrapy.spider import ...
0
votes
1answer
45 views

how to display text only using find_all in beautiful soup?

there is a very succinct solution to displaying text from a div using beautiful soup and find here http://stackoverflow.com/a/8994150/1063287 : result = soup.find('div', {'class' ...
0
votes
1answer
31 views

how to strip characters interfering with beautiful soup returning links with specified text?

i am trying to do two things with beautiful soup: find and print divs with a certain class find and print links that contain certain text the first part is working. the second part is returning ...
0
votes
1answer
16 views

Parsing XML to match comments and text according to tag ids

(UPDATED): Added code to match values according to their ids. Question: Why are the matching ids u'1' and 'u'0' in both dictionaries not recognized? (GOAL for Code): I'm writing a script that takes ...
0
votes
1answer
68 views

BeautifulSoup / lxml: Are there problems with large elements?

import os, re, sys, urllib2 from bs4 import BeautifulSoup import lxml html = urllib2.urlopen("http://www.hoerzu.de/tv-programm/jetzt/") soup = BeautifulSoup(html, "lxml") divs = soup.find_all("div", ...
0
votes
1answer
38 views

Pulling Image from website based off link

I currently have the code in place to pull all the image tags in an html document by using the BeautifulSoup library. I was wondering if there was a way in Python to programatically download the image ...
1
vote
1answer
34 views

Regexp, Python and doc comments <!— text -->

I am programing in Python 2.7, I am using beautifulsoup4 to extract information from tags of series of documents. However the document has as well strings as: <!-- PJG ITAG l=90 g=1 f=4 --> ...
3
votes
3answers
55 views

BeautifulSoup, simple regex issue

I just hit a snag with regex and have no idea why this's not working. Here is what BeautifulSoup doc says: soup.find_all(class_=re.compile("itl")) # [<p class="title"><b>The Dormouse's ...
0
votes
1answer
46 views

BeautifulSoup, how to stop executing at certain tag

HTML I'm parsing: <h2 class="tabellen_ueberschrift al">Cards</h2> <table class="tabelle_grafik lh" cellpadding="2" cellspacing="1"> <tr> <th class="al" ...
1
vote
1answer
91 views

BeautifulSoup, 'ResultSet' object has no attribute 'find_all' (SOLVED)

I read other threads related to my issue but it did not solve the problem. <h2 class="tabellen_ueberschrift al">Cards</h2> <div class="fl" style="width:49%;"> <table ...
0
votes
2answers
45 views

Matching specific table within HTML, BeautifulSoup

I have this problem. There're several similar tables on the page I'm trying to scrape. <h2 class="tabellen_ueberschrift al">Points</h2> <div class="fl" style="width:49%;"> ...
0
votes
2answers
37 views

BeautifulSoup passing regex as argument

I have this html: title="Keeper: Michal Buchalik" class="pos_text">Buchalik</a></span> <span class="pos_text ...
0
votes
1answer
77 views

Beautifulsoup django integration

still a newbie so I have a bunch of questions which might seem silly. However, here I go: as a project to learn python, I decided I would start with something simple. The idea I had was to go to ...
0
votes
1answer
33 views

Unwanted replacement of html entities by BeautifulSoup

I have some html containing mml that I am generating from Word documents using MathType. I have a python script that uses BeautifulSoup to prettify it, but the problem is it takes something like ...
1
vote
1answer
34 views

BeautufulSoup 4, findNext() function

I'm playing with BeautifulSoup 4 and I have this html code: </tr> <tr> <td id="freistoesse">Giraffe</td> <td>14</td> <td>7</td> </tr> ...
0
votes
1answer
34 views

url errors in beautiful soup

I am trying to obtain data-PID and price from Craigslist using beautifulsoup. I have written a separate code which gives me the file CLallsites.txt. In this code I am trying to grab each of those ...
1
vote
1answer
69 views

Using beautifulsoup to get prices from craigslist

I am new to coding in python (maybe a couple of days in) and basically learning of other people's code on stackoverflow. The code I am trying to write uses beautifulsoup to get the pid and the ...
1
vote
1answer
41 views

Trouble accessing attribute after using BeautifulSoup's findAll

I'm trying to scrape sites like this one on the BBC website to grab the relevant parts of the programme listing, and I've just started using BeautifulSoup to do this. The parts of interest start ...
0
votes
0answers
22 views

how to pass server responds the same url when scrapping a very large website

I am scraping a very large website and now in the middle of it. I used the following code and got the result as the same response html page whenever their different urls are requested. How will I ...
1
vote
0answers
49 views

Python 27 - BeautifulSoup and Tables

I have this source: <tr id="bitstampUSD"> <td class="arrow" change="up" latest_trade="1363480722"> <span class="down">▼</span> </td> <td class="symbol"> ...
0
votes
1answer
58 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
1answer
55 views

using £ in function and write it to csv in Python

I want to remove pound sign from the string that is parsed from url using Beautifulsoup. And I got the following error for pound sign. SyntaxError: Non-ASCII character '\xa3' in file I tried to put ...
1
vote
2answers
148 views

Python BeautifulSoup Extract specific URLs

Is it possible to get only specific URLs? Like: <a href="http://www.iwashere.com/washere.html">next</a> <span class="class">...</span> <a ...
0
votes
1answer
58 views

a strange issue when trying to analysis HTML with beautifulsoup

i'm trying to write some python codes to gather music charts data from official websites, but i get in trouble when gathering billboard's data. i choose beautifulsoup to handle the HTML my ENV: ...
0
votes
1answer
62 views

How to get large amounts of href links of very large contents of website with Beautifulsoup

I am parsing a large html website that has over 1000 href links. I am using Beautifulsoup to get all the links but second time when I run the program again, beautifulsoup cannot handle it. (find ...
1
vote
1answer
61 views

Issue with table structure of webpage when scraping data using beautiful soup

I am using following code to scrape data from a tabular structure present on a webpage using beautiful Soup: # -*- coding: cp1252 -*- import csv import urllib2 import sys import urllib import time ...
2
votes
3answers
80 views

Import rows of a table from html file as a list in python

I am a python newbie, and I'm having some trouble that I can't resolve (even after about a million Google searches). I have >100 html files, each of which has a couple of tables in them. Ultimately, ...
0
votes
1answer
435 views

AttributeError: addinfourl instance has no attribute 'get_type'

Ok, I'm trying to use opener with beautiful soup to extract some info from a page, and I think that's where the problem is arising. I need to use opener because I need to route it through Tor, as I ...
0
votes
2answers
86 views

Scraping Product Names using BeautifulSoup

I'm using BeautifulSoup (BS4) to build a scraper tool that will allow me to pull the product name from any TopShop.com product page, which sits between 'h1' tags. Can't figure out why the code I've ...
1
vote
0answers
78 views

BeautifulSoup fails with Recursion Depth Error when running from IDLE

Consider the following BeautifulSoup code snippet >>> ================================ RESTART ================================ >>> import BeautifulSoup >>> with ...
1
vote
1answer
64 views

Crawling a page using LazyLoader with Python BeautifulSoup

I am toying around with BeautifulSoup and I like it so far. The problem is the site I am trying to scrap has a lazyloader... And it only scraps one part of the site. Can I have a hint as to how to ...
1
vote
2answers
86 views

Issue in using json.loads() in python

I am trying to get data from a nested java script structure. I want to use json.loads() for this. However, I am getting an error saying "No JSON object could be decoded" Following is the code that I ...
0
votes
1answer
44 views

Issue with designing function for data scraping using BS4

Data which I require is present under 2 different combination of tag + class. I want my function to search under both combinations and present the data under both together. Both combinations are ...
0
votes
2answers
54 views

Regular expression for tag item (class) in html

I'm rather new to python and programming ;-), and I'm writting a programm for scraping data from the web-site that has over 6000 lines for only 1 page, while I'm going to scrape about 20000 thousands ...

1 2 3