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.
0
votes
1answer
29 views
Creating an XML document with BeautifulSoup
In all the examples and tutorials I have seen of BeautifulSoup, an HTML/XML document is passed and a soup object is returned which can then be used to modify the document. However, how can I use ...
1
vote
1answer
69 views
Creating a python script to login into a website and pull HTML data
Hi I hope someone can help me,
I'm trying to create a script that logs into a website and pulls a value from the HTML I have installed BeautifulSoup and i've tried to use curl but I can't seem to ...
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: ...
1
vote
1answer
73 views
Extracting content of div with BeautifulSoup
At first I would like to say, that I already found the same question with answers, but I couldn't get them working. I try to extract the data from the reviews, for now the review's content and it's ...
1
vote
2answers
45 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
48 views
Beautiful Soup: Extracting href from HTML ordered list
I am attempting to extract the URLs from within a HTML ordered list using the BeautifulSoup python module. My code returns a list of NONE values equal in number to the number of items from the ...
0
votes
1answer
110 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
37 views
How to set a BeautifulSoup.Tag as a label in Gtk3 using Python
I'm working on a program to fetch pictures from APOD web site and show its information (the part called Explanation in the site, right below the picture). I'm going to show a simplified class that ...
0
votes
1answer
22 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
21 views
Parsing a specific website crashes the Python process
Looking to parse an HTML page for images (from http://www.z-img.com), and when I load the page into BeautifulSoup (bs4), Python crashes. The "problem details" shows that etree.pyd was the "Fault ...
0
votes
2answers
38 views
Scraping value from field on a page
I'm scraping a page that has a link like this:
<a id="something" href="place" class="thing" data="12345">
<span class="otherthing"></span></a>
I'd like to extract the number ...
0
votes
2answers
113 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:
...
0
votes
2answers
46 views
Python character encoding issue
I made a script to download a few pages from a server using BeautifulSoup. I am writing the output to a .csv file. I am using python 2.7.2
I get the following error at some point:
Traceback (most ...
1
vote
3answers
34 views
how to find spans with a specific class containing specific text using beautiful soup and re?
how can i find all span's with a class of 'blue' that contain text in the format:
04/18/13 7:29pm
which could therefore be:
04/18/13 7:29pm
or:
Posted on 04/18/13 7:29pm
in terms of ...
-2
votes
1answer
58 views
Using Python and Beautiful Soup to create a CSV file
Is it possible using Python to save a portion of a filename as a field in a CSV file? I have a series of HTML files named, say, "000000001 8375739.html" all the way through "000000021 ...
0
votes
1answer
47 views
Using Beautiful Soup to extract Norwegian text from HTML files, losing the Norwegian characters
I have a Python script that uses Beautiful Soup to extract the text from HTML files in a directory. However, I'm having trouble getting the encoding to work properly. At first I though there may be a ...
0
votes
2answers
48 views
Iterate through multiple files and append text from HTML using Beautiful Soup
I have a directory of downloaded HTML files (46 of them) and I am attempting to iterate through each of them, read their contents, strip the HTML, and append only the text into a text file. However, ...
0
votes
1answer
47 views
Extract text from .html file, remove HTML, and write to text file using Python and Beautiful Soup
I'm using Beautiful Soup 4 to extract text from HTML files, and using get_text() I can easily extract just the text, but now I'm attempting to write that text to a plain text file, and when I do, I ...
1
vote
1answer
42 views
Beautiful Soup and searching in results
These are my first steps with python, please bear with me.
Basically I want to parse a Table of Contents from a single Dokuwiki page with Beautiful Soup. The TOC looks like this:
<div ...
-1
votes
2answers
35 views
Python/BeautifulSoup - how to remove all tags from an element?
how can I simply strip all tags from an element I find in BeautifulSoup ?
1
vote
1answer
50 views
Making a crawler using Beautiful Soup, issues with indexing urls
So I am attempting to make a crawler for a search engine. I have the code mostly complete. The way it works is:
to open the page using BeautifulSoup,
save the url and a docID to an index (in this ...
0
votes
3answers
82 views
Error importing BeautifulSoup - Conflict with Python version
I installed BeautifulSoup with the command:
sudo easy_install BeautifulSoup4
I got the message:
Searching for BeautifulSoup4
Best match: beautifulsoup4 4.1.3
Processing ...
0
votes
1answer
42 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
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
1answer
29 views
Python script cronjob with external Library
I'd like to run a Python script with external Library (beautifulsoup) on a hosted Webserver.
What type of Webserver do I need? I heard something about CGI?
How I've to implement and install the ...
0
votes
1answer
67 views
call one spider from another spider in a web crawler made using scrapy
I want to hit all the links on a web page where pdf files lie and store these pdf files on my system.
from scrapy.spider import BaseSpider
from scrapy.selector import HtmlXPathSelector
from ...
0
votes
1answer
63 views
Python: How to filter columns from a csv data within a webpage?
My current implementation is:
import csv
import urllib.request
from bs4 import BeautifulSoup
f=urllib.request.urlopen('<my_url_goes_here>')
soup = BeautifulSoup(f.read())
my_csv = ...
0
votes
0answers
62 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
56 views
Scrape using Beautiful Soup preserving entities
I would like to scrape a table from the web and keep the entities intact so that I can republish as HTML later. BeautifulSoup seems to be converting these to spaces though. Example:
from ...
0
votes
1answer
35 views
Beautifulsoup functionality not working properly in specific senario
I am trying to read in the following url using urllib2: http://frcwest.com/ and then search the data for the meta redirect.
It reads the following data in:
<!--?xml version="1.0" ...
1
vote
2answers
48 views
Parsing and sorting keys in Python dictionary
I created the following dictionary:
code dictionary = {u'News; comment; negative': u'contradictory about news', u'News; comment': u'something about news'}
I now want to write some Python code that ...
0
votes
2answers
43 views
Suggestions on get_text() in BeautifulSoup
I am using BeautifulSoup to parse some content from a html page.
I can extract from the html the content I want (i.e. the text contained in a span defined by the class myclass).
result = ...
0
votes
1answer
43 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
38 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
52 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
67 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
42 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
66 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
26 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
63 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
54 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
42 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
43 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
53 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
13 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
52 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 = ...
