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 = ...
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 = ...
2
votes
2answers
73 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, ...
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 ...
0
votes
1answer
59 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 ...
4
votes
2answers
147 views

Parsing Web Page's Search Results With Python

I recently started working on a program in python which allows the user to conjugate any verb easily. To do this, I am using the urllib module to open the corresponding conjugations web page. For ...
0
votes
1answer
398 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
1answer
64 views

specific problems to read page with “BeautifulSoup”

I do not want to advertise any product. But the error is very specific and I do not know how ask otherwise. I want to get the links in the menu on the page A, which is in the code, but that page has ...
-2
votes
2answers
112 views

Beautifulsoup prettify Not returning HTML [closed]

I'm trying to scrape a particular page for personal use I used python 3.3 with beautifulsoup 4.1.2 library. Here is code I used. import urllib.request from bs4 import BeautifulSoup page = ...
0
votes
1answer
133 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() ...
1
vote
1answer
223 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
2answers
78 views

Grabbing the info from beautiful soup and putting it into a text file?

I have started to learn how to scrape information from websites using urllib and beautifulsoup. I want to grab all the text from this page (in the code) and put it into a text file. import urllib ...
0
votes
0answers
41 views

How to get status bar of the playing video using mechanize, beatifulsoup or urllib [closed]

I have a working skript that goes to the website, do what I need, but unfortunately I can't find any information how to deal with videos on the page. What I want to do: * Get the status bar of the ...
1
vote
1answer
287 views

UnicodeWarning: Unicode equal comparison. How to replace non-standard characters in NavigableString dataype?

I'm scraping a website with Python 2.7 using BeautifulSoup. Here's my code: # -*- coding: utf-8 -*- from BeautifulSoup import BeautifulSoup import urllib import json url = 'http://www.website.com' ...
1
vote
1answer
191 views

How to handle redirects with python/urllib status code still 200?

I'm having trouble handling a certain redirect with Python. I'm requesting a page that apparently loads and immediately redirects to ww1.www.com. I'm assuming this is the case because I've tried ...
3
votes
2answers
2k views

python: Google Search Scraper with BeautifulSoup

Goal: Pass a search string to search on google and scrape url, title and the small description that get publish along with the url title. I have following code and at the moment my code only gives ...
3
votes
3answers
3k views

can we use xpath with BeautifulSoup?

I am using beautifulsoup to scrape a url and i had the following code import urllib import urllib2 from BeautifulSoup import BeautifulSoup url = ...
3
votes
2answers
894 views

Parsing web page in python using Beautiful Soup

I have some troubles with getting the data from the website. The website source is here: view-source:http://release24.pl/wpis/23714/%22La+mer+a+boire%22+%282011%29+FRENCH.DVDRip.XviD-AYMO there's ...
0
votes
1answer
130 views

urllib is mangling my urls

I'm writing a little scraper. Here's the code so far. from urllib import urlopen from BeautifulSoup import BeautifulSoup import re soup = BeautifulSoup( ...
3
votes
1answer
874 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 ...
-3
votes
1answer
435 views

Need help with a Python scraper

I am trying to use urllib with python to make a scraper, I can download the images, but they are a thumbnail, 250x250 or less.(I am trying of 4chan, Because I like some of the picture threads) How can ...
0
votes
2answers
129 views

Retrieving string from html on non-unique table

Here is the html I am trying to parse. <TD>Serial Number</TD><TD>AB12345678</TD> I am attempting to use regex to parse the data. I heard about BeautifulSoup but there are ...
0
votes
2answers
1k views

How to remove new line and linefeed from title tags of a page? (Google App Engine - Python)

I have this code to extract title: soup = BeautifulSoup.BeautifulSoup(urllib.urlopen(url)) title = str(soup.html.head.title.string).lstrip("\r\n").rstrip("\r\n") Some sites add return or newline ...
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 ...
0
votes
2answers
1k views

using urllib and beautifulsoup to find values inside “hidden” tags

i want to know if it is possible to display the values of hidden tags. im using urllib and beautifulsoup but i cant seem to get what i want. the html code im using is written below: (saved as ...
0
votes
2answers
1k views

Getting Twitter news feed using Python

Hey everybody, I've been playing around with Python 2.7 and BeautifulSoup 3.2 recently and I've gotten my code to work for Facebook where it makes a POST request to Facebook to login and downloads the ...
2
votes
4answers
1k views

Python - Saving an image from a url

Is there a way to save a picture from a url using urllib or Beautiful Soup? -Thanks
10
votes
6answers
18k views

Downloading a picture via urllib and python

So I'm trying to make a Python script that downloads webcomics and puts them in a folder on my desktop. I've found a few similar programs on here that do something similar, but nothing quite like ...
0
votes
2answers
566 views

Cannot fetch a web site with python urllib.urlopen() or any web browser other than Shiretoko

Here is the URL of the site I want to fetch https://salami.parc.com/spartag/GetRepository?friend=jmankoff&keywords=antibiotic&option=jmankoff%27s+tags When I fetch the web site with the ...