Tagged Questions
0
votes
1answer
10 views
Extracting table contents from html with python and BeautifulSoup
I want to extract certain information out of an html document. E.g. it contains a table
(among other tables with other contents) like this:
<table class="details">
<tr>
...
1
vote
2answers
23 views
Parsing html in Beautiful soup
I try to parse the fragments of html like this:
<div><span>adrress</span>text of address</div>
How can I take fragment 'text of address' programatically without span tag in ...
1
vote
2answers
16 views
How to use python beautiful soup to get only the level 1 navigableText?
I am using beautiful soup to get the text from this example html code:
....
<div style="s1">
<div style="s2">Here is text 1</div>
<div style="s3">Here is text ...
1
vote
2answers
24 views
Beautiful soup - how to extract a string from an object
I am learning Beautiful soup. I have succeeded in tracking down the html lines that I need.
My next step is to extract an Id value from those lines.
The code to find the lines looks like this:
...
1
vote
1answer
36 views
Python Beautiful Soup crawl text data
I am a newbie to python and I am trying to crawl some text comments from a website using beautifulSoup in Python. Part of the html structure is as follows,
<div style="1st level">
<div ...
3
votes
1answer
39 views
Extract number followed and preceded by the words
Extract numbers followed and preceded by words:
String q = 'Consumer spending in the US rose to about 62% of GDP in 1960, where it stayed until about 1981, and has since risen to 71% in 2013'
q = ...
1
vote
2answers
30 views
Extract content of <p> tags when other tags are present
I want to extract both the text within the tag and the bit after in the following bit of html, using beautiful soup:
<p><i>Italic stuff</i> Not Italic stuff</p>
So I do
...
1
vote
1answer
18 views
scrape data from website that turned next page when scrolled to bottom using Python and BeautifulSoup
If I need to scrape data from website that load next page automatically when one scrolled to be bottom of the page (i.e. endless extending the page) using Python and Beautiful, how can I do that? Is ...
0
votes
1answer
33 views
Problems with BeautifulSoup and lxml parser
I noticed a strange behavior when scraping some webpages using BeautifulSoup 4.1.0 and the lxml parser. The built-in html.parser didn't work for the webpage I was trying to scrape and I decided to use ...
1
vote
1answer
23 views
findAll function BeautifulSoup
I have been trying to parse text elements stored in between <td> tags, for example:
<tr>
<td>Trading Hours</td>
<td><b>Monday</b> <br />
London - 23:00 ...
0
votes
1answer
24 views
Div inside a div breaks the extraction of the whole div - Python/BS4
This is the HTML Im working with:
<div id="post_message_64012736" class=" post">
<br>
Just testing something, please ignore this :D<br>
<br>
<br>
<br>
<br>
...
1
vote
1answer
33 views
How to prevent webpage from crashing BeautifulSoup?
On Python 3.2.3 running on Kubuntu Linux 12.10 with Requests 0.12.1 and BeautifulSoup 4.1.0, I am having some web pages break on parsing:
try:
response = ...
1
vote
1answer
28 views
BeautifulSoup 4 - parse a two col table into a dictionary
I am using BeautifulSoup 4
I have a big page to parse but I need to find the section
soup.findAll('h2', text='Case details')
I would like to create the following object
details = ...
0
votes
2answers
34 views
Beautiful Soup Object Omitting Information
Problem: The beautiful soup object seems to delete valuable information from the HTML. Why is it doing this, and how can I extract this field?
Example: The raw HTML I'm interested in expresses ...
0
votes
1answer
29 views
Alter beautifulSoup code to extract words
here is some code I found online that will get prices (i.e. decimals) from websites. I need to alter this code so it doesn't return a decimal, but a string.
from bs4 import BeautifulSoup
import ...
0
votes
2answers
107 views
Pythonic way to iterate through loops
I want to implement the following code in more of a pythonic way:
odd_rows = table.findAll('tr', attrs = {'class':'odd'}) #contain all tr tags
even_rows = table.findAll('tr', attrs = ...
0
votes
1answer
21 views
Requests library crashing on Python 2 and Python 3 with
I am trying to parse arbitrary webpages with the requests and BeautifulSoup libraries with this code:
try:
response = requests.get(url)
except Exception as error:
return False
if ...
0
votes
2answers
15 views
xml parsing terminated inexplicably
I have a file filled with sentences wrapped in wellformed XML (xmllint and tidylib says so).
So the xml looks like this:
<a id="100" attr1="text" attr1="text" attr1="text">
<tagname ...
-1
votes
1answer
39 views
__dict__.items() not returning all object attributes
Consider:
>>> result = requests.get('http://dotancohen.com')
>>> soup = BeautifulSoup(result.text)
>>> a = soup.find('a')
>>> for k,v in a.__dict__.items():
... ...
1
vote
1answer
19 views
NoneType object is not callable__ beautiful soup
This is my code so far
# -*- encoding: utf-8 -*-
import urllib2
from BeautifulSoup import BeautifulSoup as bs
import json
data = urllib2.urlopen('http://www.jma.go.jp/en/yoho/320.html')
html_doc ...
0
votes
1answer
18 views
Encountering Error while using BeautifulSoup
I am trying to extract the words(verbs) starting with R from this page. But on executing the following code:
from bs4 import BeautifulSoup
import urllib2
url = ...
0
votes
2answers
44 views
What is the best way of getting images located after specific tag in html markup in python/beautiful soup
I'm trying to find images located passed H1 tag. The markup can be any article on online magazine i.e http://www.forbes.com/sites/markrogowsky/2013/06/10/apple-wwdc-ios7-to-keep-things-simple/.
That ...
0
votes
1answer
35 views
Web scraping with Python, but values are empty
I'd like to grab values from this site: http://cdn.ime-co.ir/ with BeautifulSoup , but values are empty when I try to import tables. I think disabled with javascrip or anything that I don't know.
...
0
votes
3answers
46 views
Parsing bitcoin address in html
I'm trying to use the beautiful soup lib to parse a webpage and find bitcoin addresses.
I've managed to pull the class containing a generated address out of the whole html document:
<div ...
3
votes
1answer
32 views
Find All text within 1 level in HTML using Beautiful Soup - Python
I need to use beautiful soup to accomplish the following
Example HTML
<div id = "div1">
Text1
<div id="div2>
Text2
<div id="div3">
Text3
</div>
</div>
...
0
votes
1answer
51 views
Why is Python insisting on using ascii?
When parsing an HTML file with Requests and Beautiful Soup, the following line is throwing an exception on some web pages:
if 'var' in str(tag.string):
Here is the context:
response = ...
1
vote
0answers
61 views
UnicodeDecodeError: 'utf8' codec can't decode byte 0x80 in position 21: invalid start byte
I am using BeautifulSoup to get an article off http://www.reuters.com/article/2012/04/01/net-us-foxconn-idUSBRE83004E20120401
...
0
votes
1answer
24 views
Deciphering unknown site organization with beautiful soup
So I am trying to take any website restaurante menu, and grab it and then based on an algorithm I already have, do something with it. Here is my issue:
These menus are always in different formats!
...
0
votes
1answer
33 views
bs4: search for special characters like 'ä'
I'm trying to search for text in a webpage with characters like 'ä' bs4 does not correctly encode these and I can thus not correctly search the site. For example
<td>
<a ...
0
votes
1answer
38 views
Beautiful Soup has stopped working since Linux Mint Upgrade Python 2.7.4
I'm a beginner trying to build a script to pull an e-book from Project Gutenberg, break it into chapters and paragraphs and then do some basic analysis on the text.
I'd got as far as being able to ...
0
votes
1answer
18 views
Need help getting Beatifulsoup/urlib to handle errors properly and parse for strings
I've been working on a webcrawler in python using beautifulsoup and ran into a couple problems:
I have no idea how to handle errors like 404s, 503s or anything else like that: currently, the ...
0
votes
1answer
26 views
Aptana Python 2.7 issues
I pulled a script from the net to see if everything was working fine before I start programming. I'm a noob and cannot figure out what is going on. I installed easy_install to smooth things, ...
0
votes
1answer
20 views
Going to the next page using Python 3 and BeautifulSoup 4
I am trying to parse data from a tables on multiple pages of a web site using Python 3 and BeautifulSoup 4. Everything is working well except some of the pages have tables that exceed the length of ...
0
votes
1answer
24 views
how to read html tag's content by BeautifuSoup?
<td class="tag">
<a href="/tag/android" rel="tag">
<img src="http://127.0.0.1/idf2.png" >
android
</a>
</td>
the code:
soup = ...
0
votes
0answers
26 views
BS4 only down not return entire webpage
I'm having trouble correctly reading the below site. If I use Qt4 to convert it to HTML and print 'content' I get the entire page in HTML back, however when I try to read it using bs4 it only returns ...
1
vote
1answer
30 views
BeautifulSoup return next sibling after using findAll(text=' ')
How would I go about getting the next sibling using bs4 after I've located the contents that I want by searching the HTML using soup.findAll
<td class="name">David<span class="flag ...
1
vote
2answers
46 views
how to tell if filter() returns a new list
When scraping this Afghanistan page, I got an error saying:
Traceback (most recent call last): ...
1
vote
1answer
30 views
Preventing a “hidden” redirect with urlopen() in Python
I am using BeautifulSoup for web scraping and I am having problems with a particular type of website when using urlopen. Every item on the website has its own unique page and the item comes in ...
0
votes
0answers
22 views
Issue in using 'Mechanize' along with 'Cookielib' to extract data from website
I am trying to scrape a website that requires 'Mechanize' module to be used along with 'Cookielib'.
When I try to open the webpage directly using BeautifulSoup in Python, it gives an 'HTTPS ...
0
votes
1answer
22 views
find tags except those with attributes: BeautifulSoup
In this page that I'm trying to scrape, i want to exclude those <td> that has attributes.
<td > Click here for a comprehensive area code list for Argentina </td>
I'd like to know ...
0
votes
1answer
25 views
catch exception in BeautifulSoup.findAll function
I'm trying to scrape this afghanistan page by extracting the cities and area codes in the table. Now, When I try to scrape this american-samoa page, findAll() cannot find <td> which is true. How ...
0
votes
1answer
17 views
Unable to open images downloaded using beautiful soup library
I have a script that downloads images from webpages using the BeautifulSoup library. When I use a site such as http://www.google.com, the image downloads correctly to a folder on my desktop and I can ...
0
votes
0answers
34 views
Running Python script via Geektool on Mountain Lion fails when importing BeautifulSoup
I have a python script that I run through GeekTool to get some output on my desktop. It works fine in Geektool v3.0.1 on Snow Leopard, but fails in Mountain Lion.
I built a small demo script to find ...
0
votes
2answers
41 views
BeautifulSoup4 : Ampersand in text
I have a problem using BeautifulSoup4... (I'm quite a Python/BeautifulSoup newbie, so forgive me if i'm dumb)
Why does the following code:
from bs4 import BeautifulSoup
soup_ko = ...
0
votes
1answer
37 views
Extracting data in table using BeautifulSoup
I'm scraping this page for my android app. I'd like to extract the data on the table of cities and area codes
Here's my code:
from bs4 import BeautifulSoup
import urllib2
import re
base_url = ...
1
vote
1answer
42 views
Turning a python dict. to an excel sheet
I am having an issue with the below code.
import urllib2
import csv
from bs4 import BeautifulSoup
soup = BeautifulSoup(urllib2.urlopen('http://www.ny.com/clubs/nightclubs/index.html').read())
clubs ...
3
votes
1answer
52 views
Check if tags are empty
I have an XML file that I am parsing through BeautifulSoup. A small portion of my file is:
<document>
<ad>
<date>21-Apr-2013</date>
</ad>
<ad>
...
1
vote
1answer
196 views
Does BeautifulSoup understand relative URLs?
I'm trying to scrape a site that uses a ton of relative URLs. One archive page has links to many individual entries, but the URL is given like "../2011/category/example.html"
For each entry, I want ...
1
vote
1answer
1k views
Test if an attribute is present in a tag in BeautifulSoup
I would like to get all the <script> tags in a document and then process each one based on the presence (or absence) of certain attributes.
E.g., for each <script> tag, if the attribute ...
15
votes
5answers
18k views
retrieve links from web page using python and beautiful soup
How can I retrieve the links of a webpage and copy the url adress of the links using Python?

