2
votes
1answer
28 views

Use urllib2 cookie in Selenium

I am trying to scrape and interact with a site. Using BeautifulSoup, I can do MOST of what I want, but not all of it. Selenium should able to handle that portion. I can get it to working using the ...
0
votes
1answer
34 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
1answer
53 views

Using Beautifulsoup and Urllib2 in Python, how can I find the data surrounded by specific tags?

As an introduction to BeautifulSoup and Urllib2, I thought that I would make a basic scraping program which gets information about a given player in a video game website called lolking.net. Each user ...
0
votes
0answers
64 views

How to web scrape database of users w/o API?

For fun, I've learnt since last night how to do basic web scraping, using Python's urllib, urllib2, cookie-jar, and BeautifulSoup. It only took a bit, but I've figured out how to get all information ...
2
votes
1answer
90 views

Correct Library Usage: requests w/ bs4.BeautifulSoup?

I just switched from using urllib2 as my HTTP access library to using the request library. In urllib you use BeautifulSoup to pull the html elements using the findAll(tag='element') function, do I ...
0
votes
0answers
72 views

Need help scraping a web page with python [closed]

I am trying to scrape a web page that uses closed div tags; <div id="CR36012" style="display: none;"> I need this to say: <div id="CR36012" style="display: inline;"> so I can see the ...
0
votes
1answer
56 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
2answers
102 views

Create a list of tuples from list in python

I am using urllib2 module in python to fetch some kind of information from anchor tags from some urls like http://www.google.co.in/, below is the code import urllib2 import urlparse from ...
0
votes
3answers
200 views

Python splitting to the newline character

I have an html file that i am retrieving just the body of text i would like to print one single line right now i am print for line in newName.body(text=True): print line this gives me ...
0
votes
1answer
119 views

Scraping text using url from list (BeautifulSoup4)

I've got working text scraper from one URL. The problem is that I need to scrape 25 more urls. These urls are almost the same, only difference is last letter. Here's the code to be more clear: import ...
0
votes
2answers
64 views

python urlib2 fails when calling variable

I am scrapping data using beautiful soup. I have a list of urls I want to loop my code through, so I need to include a variable in the urllib2.Request command. When I add a variable to urllib2.Request ...
0
votes
2answers
84 views

BeautifulSoup and Regular Expressions - extracting text from tags

I'm writing a small text scraping script with Python. It's my first bigger project so I have some problems. I'm using urllib2 and BeautifulSoup. I want to scrape song names from one playlist. I can ...
1
vote
1answer
101 views

Unable to save image from web using urllib2

I want to save some images from a website using python urllib2 but when I run the code it saves something else. This is my code: user_agent = 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)' headers ...
3
votes
3answers
351 views

How can I see all notes of a Tumblr post from Python?

Say I look at the following Tumblr post: http://ronbarak.tumblr.com/post/40692813… It (currently) has 292 notes. I'd like to get all the above notes using a Python script (e.g., via urllib2, ...
1
vote
1answer
423 views

urllib2.URLError: <urlopen error unknown url type: c>

I am using the below code to scrape over XFN content from web page http://ajaxian.com but I am gatting the below error: Traceback (most recent call last): File ...
0
votes
1answer
125 views

extracting child href to BeautifulSoup list

I am learning python and using BeautifulSoup to crawl some webpages. What I am looking to do is find child 'a' of the first 'td', extract the href and add it to the list. How and where can I add the ...
0
votes
1answer
122 views

Scrappy response different than browser response

I am trying to scrape a this page with scrapy: http://www.barnesandnoble.com/s?dref=4815&sort=SA&startat=7391 and the response which I get is different than what I see in the browser. ...
0
votes
1answer
132 views

BeautifulSoup, where are you putting my HTML?

I'm using BS4 with python2.7. Here's the start of my code (Thanks root): from bs4 import BeautifulSoup import urllib2 f=urllib2.urlopen('http://yify-torrents.com/browse-movie') html=f.read() ...
2
votes
2answers
106 views

Issue scraping with Beautiful Soup

I've been scraping websites before using this same technique. But with this website it seems to not work. import urllib2 from BeautifulSoup import BeautifulSoup url = ...
0
votes
1answer
73 views

Mechanize: Only following links with certain element in URL

Learning Mechanize: I am wanting to crawl through a news site and only follow the links that have a ?sid in the link.. I cannot seem to find much on Mechanize documentation. import mechanize br = ...
1
vote
1answer
46 views

Finding a specific url in HTML

i'm new member sorry about my english but it isn't my first language. I would make a python program that extract a specific url from a html page (http://www.kernel.org/pub/linux/kernel/v3.0/). I was ...
0
votes
1answer
179 views

only download html page with urllib2

I am trying to crawl the web with urllib2 and beautifulsoup. But my code ran out of memory with some links like this: ...
0
votes
2answers
134 views

Python urlopen error with saved webpage

I have saved a webpage in the location C:\webpage.htm . I want to load it and analyse it using BeautifulSoup, however urllib won't open it. from BeautifulSoup import BeautifulSoup import urllib2 ...
1
vote
1answer
222 views

Random HTTP 503 Error using urllib and BeautifulSoup

I'm scraping a website with cookies. They provide multiple drop-down menus and I'm iterating through each option and re-capturing the session cookies with every request. The code runs just fine for a ...
1
vote
1answer
86 views

Scraping tables

I'm getting my BeautifulSoup and python bearings by walking through the process of scraping a friend's (structured, if clunky) website, with the long term goal of migrating the whole thing into a ...
0
votes
1answer
159 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
3answers
206 views

Wikipedia Scraper using Python

Hi I am trying to build a simple wikipedia scrapping tool that can let me analyse the text and build a timeline of the events in the life of a person using python. I have searching the net for ...
1
vote
1answer
1k views

using python urllib2 to send POST request and get response

I am trying to get the HTML page back from sending a POST request: import httplib import urllib import urllib2 from BeautifulSoup import BeautifulSoup headers = { 'Host': ...
0
votes
1answer
39 views

Fetch the Ubuntu USN from a script

While doing Penetration Tests, it could be useful to consult security bugs grouped by distribution versions. More specifically, I would like to fetch Ubuntu Security Notices from a python script. My ...
1
vote
1answer
166 views

BeautifulSoup + URLLib2 not extracting all of the XML from target

Here's my code: import urllib2 from bs4 import BeautifulSoup url = "http://www.sec.gov/Archives/edgar/data/1288776/000119312512312575/goog-20120630.xml" req = urllib2.Request(url, "r") response = ...
0
votes
2answers
120 views

How to extract a href link from anchor tags in beautiful soup [duplicate]

Possible Duplicate: BeautifulSoup getting href I am using beautiful soup and below is my code import urllib2 data = urllib2.urlopen("some_url") html_data = data.read() soup = ...
0
votes
2answers
103 views

urlopen always retrieves the same webpage

I am trying to parse webpages using urllib2, BeautifulSoup and Python 2.7. The problem lies upstream: each time I try to retrieve a new webpage, I get the one I already retrieved. However, pages are ...
3
votes
2answers
191 views

Python find file download link on webpage

I need a regex that will return to me the text contained between double quotes that starts with a specified text block, and ends with a specific file extension (say .txt). I'm using urllib2 to get ...
0
votes
2answers
186 views

EVENTVALIDATION error while scraping asp.net page

I need to get some values from this website. Basically I need to get the Area for every city. I am using Python and beautifulsoup for this. What I am doing is : First making a Get request to this ...
0
votes
1answer
209 views

mechanize, urllib, beautifulsoup & relative paths

Does mechanize, urllib or beautifulsoup have any built in methods for handling crawling of websites with a mixture of absolute and relative urls? A solution is lots of exceptions 'http://' + ...
3
votes
1answer
333 views

Urllib2 returning HTML with newlines and tabs

I want to scrape the HTML from some website and then send it off to BeautifulSoup for parsing. The problem is that the HTML returned by urllib2.urlopen() contains newlines (\n) and tabs (\t) as well ...
1
vote
1answer
124 views

Beautiful Soup Page Source Error

I am trying to fetch the html source from this usl: http://books.google.com/books?id=NZlV0M5Ije4C&dq=isbn:0470284889 I used the following code: #!/usr/bin/env python import urllib, urllib2, ...
1
vote
2answers
505 views

BeautifulSoup incorrectly parses page and doesn't find links

Here is a simple code in python 2.7.2, which fetches site and gets all links from given site: import urllib2 from bs4 import BeautifulSoup def getAllLinks(url): response = urllib2.urlopen(url) ...
2
votes
3answers
1k views

Urllib2 & BeautifulSoup : Nice couple but too slow - urllib3 & threads?

Hi Guys, I was looking to find a way to optimize my code when I heard some good things about threads and urllib3. Apparently, people disagree on the question which consiste of knowing which solution ...
1
vote
1answer
229 views

python, urllib2, crashes on 404 error

I have a program that grabs content from url's stored in a database. I am using beautifulsoup , urllib2 for grabbing the content. When I output the result, I see that the program crashes when it ...
1
vote
1answer
168 views

Cannot create Soup from Guardian article fetched with urllib2.urlopen

I somehow cannot create a soup from a Guardian article I am fetching with urllib2.urlopen() when the same code works with another url. Here is my code: import urllib2 from bs4 import BeautifulSoup ...
0
votes
2answers
124 views

I'm unable to get items in a list from a webpage using BeautifulSoup

I've recently been reading the BeautifulSoup documentation to become familiar with how to parse a website. So this is very new to me. Can someone tell me why I'm unable to get the Latest headlines ...
0
votes
2answers
1k views

Python script to translate via google translate

I'm trying to learn python, so I decided to write a script that could translate something using google translate. Till now I wrote this: import sys from BeautifulSoup import BeautifulSoup import ...
2
votes
1answer
1k views

Print HTML text of a selenium webelement in Python

I am using Selenium webdriver in Python for a web-scraping project. How to print the HTML text of the selenium.WebElement ? I intend to use the BeautifulSoup to parse the HTML to extract the data of ...
4
votes
2answers
1k views

Login to a website through web-scraping tool in Python

I am using Selenium webdriver in Python for a web-scraping project. I would like to login by entering the login details and then click the submit button. I am able to enter the Username and ...
3
votes
1answer
873 views

Batch downloading text and images from URL with Python / urllib / beautifulsoup?

I have been browsing through several posts here but I just cannot get my head around batch-downloading images and text from a given URL with Python. import urllib,urllib2 import urlparse from ...
0
votes
1answer
215 views

python beautifulsoup fetch xml, rather than the html page it's in

I'm using import urllib2 from BeautifulSoup import BeautifulStoneSoup xml = urllib2.urlopen('http://weatherlink.com/xml.php?user=blah&pass=blah') soup = BeautifulStoneSoup(xml) print ...
0
votes
1answer
317 views

How to extract text from a web page that requires logging in using python and beautiful soup?

i have to retrieve some text from a website called morningstar.com . To access that data i have to log in. Once i log in and provide the url of the web page , i get the HTML text of a normal user ...
2
votes
2answers
382 views

Wrong encoding with Python BeautifulSoup + MySql

I'm working with the BeautifulSoup python library. I used the urllib2 library to download the HTML code from a page, and then I have parsed it with BeautifulSoup. I want to save some of the HTML ...
0
votes
1answer
854 views

retrieving essential data from a webpage using python

Following is a part of a webpage i downloaded with urlretrieve (urllib). I want to write only this data from the webpage given below in to another text file as: ENGINEERING MATHEMATICS-IV, 4 ,36 ,40 ...

1 2