BeautifulSoup is a Python package for parsing HTML. The latest version of this package is version 4, which is to be imported as bs4. It's fully compatible with previous version.

learn more… | top users | synonyms

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
42 views

Error while downloading images from Wikipedia via python script

I am trying to download all images of a particular wikipedia page. Here is the code snippet from bs4 import BeautifulSoup as bs import urllib2 import urlparse from urllib import urlretrieve ...
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
61 views

Beautifulsoup find element by text using `find_all` no matter if there are elements in it

For example bs = BeautifulSoup("<html><a>sometext</a></html>") print bs.find_all("a",text=re.compile(r"some")) returns [<a>sometext</a>] but when element ...
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 ...
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 /> सूरत। ...
1
vote
1answer
43 views

Beautiful Soup Type Error and Regex

I am trying to find all the emails on a given page and match them using a regex. I am using BeautifulSoup to get all the tags email_re = re.compile('[A-Za-z0-9\.\+_-]+@[A-Za-z0-9\._-]+\.[a-zA-Z]*') ...
2
votes
2answers
68 views

Get String from <div> without tag

I have a HTML code as below: <div class="content"> <div class="title"> <a id="hlAdv" class="title" href="./sample.aspx"> <font size=2>Pretty Beauty ...
0
votes
0answers
27 views

Parsing html table with rowspans in python - is there any module?

I am scraping this page: link in python with beautifulsoup4, but got stuck with rowspans. Is there any module or template solution? I need one row for one deputie in the end, like deputy name | ...
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
60 views

Strange error with AttributeError: 'NoneType' object has no attribute 'getText'

import os, re, sys, urllib2 from bs4 import BeautifulSoup import lxml def get_epg(channel, html): soup = BeautifulSoup(html, "lxml") main_div = soup.find("div", ...
0
votes
2answers
36 views

Stripping links returned by beautfulsoup

When I use the beautifulsoup I get the following code returned from href. ...
0
votes
1answer
45 views

Divide and scrape <tr> groups separated by unique <td> using beautiful

So the webpage that I'm trying to scrape is something like this: ... <tr><td colspan=3><BR><div class="list">Foo:</div></td></tr> <tr><td><img ...
0
votes
1answer
47 views

Google search url given by href is wrong

It appears that google searches will give the following url: /url?q= "URL WOULD BE HERE" &sa=U&ei=9LFsUbPhN47qqAHSkoGoDQ&ved=0CCoQFjAA&usg=AFQjCNEZ_f4a9Lnb8v2_xH0GLQ_-H0fokw ...
1
vote
1answer
55 views

BeautifulSoup and urllib not parsing google images page

I am trying to use BeautifulSoup to find a random image from google images. My code looks like this. import urllib, bs4, random from urllib import request urlname = ...
0
votes
0answers
14 views

The symbol combination “&#” in text prevents BeautifulSoup from reading the html code after it

I'm trying to download text written by some people automatically with BeautifulSoup and everything went very well so far, but now one person has written the symbols "&#" in his text, and my soup ...
0
votes
1answer
63 views

Beautifulsoup can't extract src attribute from img tag

Here is my code: html = '''<img onload='javascript:if(this.width>950) this.width=950' src="http://ww4.sinaimg.cn/mw600/c3107d40jw1e3rt4509j.jpg">''' soup = BeautifulSoup(html) imgs = ...
1
vote
1answer
43 views

How to get the values of span tag in html using beautiful soup?

My span tag consists of: <span id="internal-source-marker_0.9510186333209276"><span> What I want to do is convert that into <span><span> Basically, I want to get the check if ...
0
votes
1answer
35 views

data coming from wrong variable - CSV

I'm writing a beatifulsoup webcrawler. The script gets the correct data and writes it to a file in csv format. However, when attempting to read the data back (near the end of the code) I open the ...
0
votes
0answers
31 views

Problems scrapping webpage using bs4

I'm trying to scrape the following html using bs4, <body id="top" class="sale gecko gecko18 os-win32"> <div id="detail"> <div id="detcon"> <table class="detail"> ...
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 ...
2
votes
2answers
46 views

How to prevent BeautifulSoup4 from adding extra <html><body> tags to the soup? [duplicate]

In BeautifulSoup versions prior to 3 I could easily take any chunk of HTML and get a string representation in this way: from BeautifulSoup import BeautifulSoup soup3 = ...
0
votes
1answer
52 views

Get All Tables from HTML with beautifulsoup using nested loops

I am trying to get all the tables from this site using nested loops. Im almost there, but still not sure about the looping for several tables with the same class identifier. I get an error code for ...
0
votes
2answers
49 views

Beautiful soup returns None

I have the following html code and i use beautiful soup to extract information. I want to get for example Relationship status: Relationship <table class="box-content-list" cellspacing="0"> ...
0
votes
1answer
99 views

BeautifulSoup, parsing and writing the data in a text file

from bs4 import BeautifulSoup soup = BeautifulSoup(open("youtube.htm")) for link in soup.find_all('img'): print link.get('src') file = open("parseddata.txt", "wb") ...
0
votes
1answer
30 views

Python & Beautiful Soup - Searching result strings

I am using Beautiful Soup to parse an HTML table. Python version 3.2 Beautiful Soup version 4.1.3 I am running into an issue when trying to use the findAll method to find the columns within my ...
-1
votes
2answers
57 views

Tips on writing script to scrape particular website for occurances of particular word [closed]

I am looking to write a script in Python which will scrape particular websites for the occurrence of a certain word and output the line(s) which match into a file/DB. I have seen people around the ...
2
votes
1answer
76 views

How to stop BeautifulSoup escaping inline javascript

I have discovered that BeautifulSoup 4 appears to escape some characters in inline javascript: >>> print s <DOCTYPE html> <html> <body> <h1>Test page</h1> ...
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 ...
0
votes
3answers
43 views

BeautifulSoup: how to select certain tag

I am confused with how beautiful soup works, when you want to crab a child of a tag. So, I have the following HTML code <div class="media item avatar profile"> <a href="http://..." ...
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 --> ...
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 ...
2
votes
3answers
89 views

Python loop or output - only on my computer

I have a strange problem that my computer reacts differently to this python script than other people's computer (im on macOX Mountain Lion python v =2.7) . Any idea how to fix this, or please report ...
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 ...
1
vote
1answer
38 views

Beautifulsoup for row loop only runs once?

I'm almost finished a webcralwer grabbing a table. This outputs the first row in the table only. Can anyone help identify why this does not return all rows in the table. Please ignore the while ...
2
votes
2answers
74 views

Error with beautiful soup: list index out of range

I'm a **very new programmer to python. Working on a webcrawler using urllib and beautifulsoup. Please ignore the while loop at the top and incrementation of i, I'm just running this test version, ...
1
vote
2answers
64 views

How to make Python Dict from JSON data using BeautifulSoup

I am scraping a website from which I need certain information. The information I need is the dictionary after Sw.preloadedData["overview"] =: <script type="text/javascript"> ...
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
43 views

Using Beautiful Soup, grabbing stuff between <li> and </li>

Here is the code I have so far: import urllib from bs4 import BeautifulSoup lis = [] webpage = urllib.urlopen('http://facts.randomhistory.com/interesting-facts-about- cats.html') soup = ...
0
votes
1answer
45 views

BeautifulSoup not grabbing dynamic content

My issue I'm having is that I want to grab the related links from this page: http://support.apple.com/kb/TS1538 If I Inspect Element in Chrome or Safari I can see the div id="outer_related_articles" ...
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%;"> ...
1
vote
1answer
56 views

extracting body tags from smg file Beautiful Soup and Python

i have an sgm file , with follwing format <REUTERS TOPICS="NO" LEWISSPLIT="TRAIN" CGISPLIT="TRAINING-SET" OLDID="16321" NEWID="1001"> <DATE> 3-MAR-1987 09:18:21.26</DATE> ...
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
0answers
50 views

attribute error using beautifulsoup get_text()

I am trying to extract the text between <p> <\p>tags but I am getting an Attribute error with the following code: page=urllib2.urlopen(url) soup=BeautifulSoup(page.read()) ...
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 ...
0
votes
0answers
53 views

Get the selected option using BeautifulSoup

from bs4 import BeautifulSoup soup = BeautifulSoup( '''<SELECT> <option value="1">ONE</option> <option value="2" selected>TWO</option> <option ...
1
vote
1answer
76 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
2answers
67 views

Scraping Wiki Page In Beautiful Soup

I'm trying to scrape some text from a wiki page specifically this one. I'm using BeautifulSoup, or at least trying to...I'm not really experienced with webscraping. Here is my code so far... import ...

1 2 3 4 5 32