The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
14 views

Downloading web image w/ urlopen/shutil : error __exit__

I'm trying to download images with shutil/urlopen because of deprecated? I'm not sure if its deprecation, but urlretrieve doesn't download the file, it just creates folder of the image name instead. ...
1
vote
1answer
66 views

PYTHON 3.3.1 - Using urllib to directly open a file, code gets stuck at a specific line

I'm trying to write a Python program to deal with RSS, however I'm having some issues downloading the files directly from the internet. I am using urllib.request.urlopen() to get the files. Here is ...
0
votes
1answer
41 views

django - configure urls.py regex to process an urlopen post

I am a total newbie to Python and Django and am playing around with passing data, via http post, to a simple web app. I went through the Django tutorial and have a decent understanding of what was ...
0
votes
0answers
65 views

getting http.client.BadStatusLine with urlopen(IP).read()

The data I am trying to read is in xml format. There is a single space before the xml declaration. I can not edit this part as it is hard coded into the data source. I can only read from it. When the ...
1
vote
1answer
161 views

503 error when trying to access Google Patents using python

Earlier today I was able to pull data from Google Patents using the code below import urllib2 url = ...
0
votes
2answers
92 views

urllib2.openurl not working on Google Patents

I'm trying to scrape some data from google patents, and the beginning of my code looks like this: (here is the hyperlink to the url listed below) In [1]: import urllib2 In [2]: ...
0
votes
2answers
374 views

Is there a way to scrape Amazon Product Listing page using Python?

I'm trying to scrape product listing pages that display the vendors and prices of particular products, but urllib.urlopen isn't working--it will work on all other pages on Amazon, but I'm kind of ...
1
vote
2answers
286 views

Error with urlopen: new-line character seen in unquoted field

I am using urllib.urlopen with Python 2.7 to read csv files located on an external webserver: # Try & Except statements removed for clarity import urllib import csv url = ... csv_file = ...
0
votes
2answers
320 views

Using gevent with pyramid

I'm building a website using pyramid, and I want to fetch some data from other websites. Because there may be 50+ calls of urlopen, I wanted to use gevent to speed things up. Here's what I've got so ...
0
votes
1answer
255 views

urllib2 python exception in Ubuntu when loading a https json file

I'm trying to load a json file but it's throwing an exception: <urlopen error [Errno 104] Connection reset by peer> This is my code (I executed it on the shell for testing/debugging ...
0
votes
1answer
224 views

HTTP Request with Python 2.7.3

I have a string result in this string is the URL www.test.com I know that on www.test.com is an website with the number 4. I will save the number in my programm as an integer. import urllib ...
0
votes
0answers
172 views

How to set TCP_NODELAY flag when loading URL with urllib2?

I am using urllib2 for loading web-page, my code is: httpRequest = urllib2.Request("http:/www....com") pageContent = urllib2.urlopen(httpRequest) pageContent.readline() How can I get hold of the ...
1
vote
2answers
75 views

How do I get the urlopen command in Python to give up and move on?

I'm working on a script in Python 2.7 that downloads web pages. Most of the time, everything proceeds as planned. Given that this script has thousands of web pages to download, there will inevitably ...
0
votes
1answer
275 views

Error from urlopen “code for hash not found” on linux

I've tried a couple of searches and I don't think this has been asked, but if this is a duplicate please forgive me. I'm trying to use urllib on python-2.7 to read from a web page. Very simple ...
0
votes
4answers
109 views

How to get content of forum page using python [closed]

I'm new to python and need your advice. I need to get content of forum page generated by php/java/ajax. The sourch code contains all the elements added to page by php/java/ajax. Is it possible to read ...
1
vote
0answers
298 views

urllib.urlopen() gives socket error: Name or service not known on python2.7

I am just starting to use and learn Python, so this may seem vary naive to ask. On my Linux system if i try to get a webpage using urllib.urlopen() I get an error Traceback (most recent call last): ...
1
vote
2answers
550 views

How to pass parameter to Url with Python urlopen

I'm currently new to python programming. My problem is that my python program doesn't seem to pass/encode the parameter properly to the ASP file that I've created. This is my sample code: import ...
-2
votes
1answer
73 views

Problems getting the page source with urlopen [closed]

The webplayer on this site http://rockantenne.de/webplayer has a playlist available with all the songs played so far on that day. When I am in Firefox and press Ctrl-U to see the source code of the ...
0
votes
1answer
227 views

Urllib2 HTTPS truncated response

I am trying to fetch a page using urllib2.urlopen (actually, I am using mechanize, but this is the method that mechanize calls) When I fetch the page, I am getting incomplete responses; the page gets ...
0
votes
2answers
65 views

open file with string that has multiple variables

I can get the text file when I set airport to one variable. However, how can I get the text files for multiple airport codes and display the information? airport = 'KSFO, KSJC, KOAK' for metar in ...
0
votes
0answers
43 views

urlopen/curl not returning complete json while its coming fine on browser

We are trying to get a JSON from tumblr blog using it APIs for posts. When we call the API from browser, it comes absolutely fine but when we try it from code using urlopen or curl it randomly comes ...
3
votes
2answers
193 views

Why urllib.urlopen.read() does not correspond to source code?

I'm trying to fetch the following webpage: import urllib urllib.urlopen("http://www.gallimard-jeunesse.fr/searchjeunesse/advanced/(order)/author?catalog[0]=1&SearchAction=1").read() The result ...
2
votes
3answers
3k views

python urllib2 urlopen response

python urllib2 urlopen response: <addinfourl at 1081306700 whose fp = <socket._fileobject object at 0x4073192c>> expected: {"token":"mYWmzpunvasAT795niiR"}
0
votes
2answers
494 views

python: Can't use urlopen!! from urllib, urllib2, clientcookie urlopen ssl error

I made some code for access particular site instead user. It's very similar to auto login program. My program receive userid and password from user and try access url with data and login, return login ...
0
votes
2answers
484 views

python urllib2.urlopen(url) process block

Thanks to read my qeustion. I use 'urllib2.urlopen()' by the way, my process stop(block) I know that urllib2.urlopen() has default timeout, but my process blocked. I want to know that problem. Of ...
2
votes
1answer
440 views

How to use python urlopen scraping after a page finish loading all searching result?

I am trying to scrape air ticket info(including plane info and price info, etc.) from http://flight.qunar.com/ using python3 and BeautifulSoup. Below is the python code I am using. In this code I ...
0
votes
1answer
216 views

HTTPConnection.request fails but urllib.request.urlopen works?

I've been stuck here for quite a while but can't find anything helpful. I'm trying to connect to a website and get a response json file in Python3. The code looks like below: conn = ...
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
3answers
759 views

Passing a variable in url?

So I'm new in python and I desperately need help. I have a file which has a bunch of ids (integer values) written in 'em. Its a text file. Now I need to pass each id inside the file into a url. ...
8
votes
4answers
1k views

Use “byte-like object” from urlopen.read with json?

Just trying to test out very simple Python json commands, but having some trouble. urlopen('http://www.similarsitesearch.com/api/similar/ebay.com').read() should output ...
1
vote
1answer
171 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 ...
1
vote
2answers
315 views

How to request a url with non-unicode carachters on main domainname (not params) in Python?

I cannot request url "http://www.besondere-raumdüfte.de" with urllib2.urlopen(). I tried to encode string using urllib.urlencode with utf-8, idna, ascii But still doesn't work. Raises URLError: ...
2
votes
1answer
723 views

Python - character encoding and decoding problems

I have got 1 source file with utf-8 characters (names) I have got 1 out file with same character encoding. I am working with a html page, paste and cut the useful information for me to ...
6
votes
1answer
2k views

Urllib.urlopen() works on SSLv3 urls with Python 2.6.6 on 1 machine, but not with 2.6.7/2.7.2 on another

Spent a good part of a day on this, and I'm realllly at my wit's end. I have 1 machine "A" with Python 2.6.6/2.7.2 installed, and another machine "B" with Python 2.6.7/2.7.2 installed. On machine A, ...
1
vote
3answers
1k views

How to use urlopen to make POST request without data argument

I am trying to use urlopen to perform GET and POST requests via the Facebook Graph API. I noticed from here: Facebook Graph API and Django that I can perform GET request fairly easily. And from here: ...
1
vote
1answer
94 views

Problems with urlopen and mysql

TRANSLATION: I want to get the plain text of web pages, where the urls are stored and then do an update in the same table adding the text. For some reason, after opening around 800 links the program ...
0
votes
0answers
336 views

urllib.urlopen “File not found error”

[Errno 2] No such file or directory: 'http://api.nytimes.com/svc/search/v1/article?query=title:music&api-key=**********' This is the error that I get from urllib.urlopen when I try to open the ...
4
votes
1answer
753 views

why python gevent is slower than serial ?

i am using gevent to preform concurrent download. based on this example this is the code: import gevent from gevent import monkey urls = ...
2
votes
2answers
1k views

How do I set cookies using Python urlopen?

I am trying to fetch an html site using Python urlopen. I am getting this error: HTTPError: HTTP Error 302: The HTTP server returned a redirect error that would lead to an infinite loop The ...
1
vote
1answer
87 views

How do i set a header that prevents the site from sending a gzip encoded response

i am using python urllib2.urlopen to get html content and i am getting a gziped response. can i set the headers so i will get it not zipped ? my code response = urlopen(url,None , TIMEOUT) html = ...
1
vote
2answers
610 views

Error while using urllib.request.urlopen in Python

What's wrong with this code? >>> from urllib.request import urlopen >>> for line in urlopen("http://google.com/"): print(line.decode("utf-8")) <!doctype ...
0
votes
1answer
98 views

CURL and urlopen giving conflicting results

So I'm retrieving some JSON data from a website and using the standard urlopen() from urllib2: Code: url = ...
2
votes
1answer
288 views

urlopen call with timeout not terminating after timeout

In Python 2.4.4, I'm using urllib2.urlopen() to request a resource. Before making the request, I'm setting a timeout with: socket.setdefaulttimeout(10) (This version of Python is too old to have a ...
1
vote
2answers
323 views

Python: KeyError/IOError with urllib.urlopen

I am trying to pass some text to this readability API like so: text = 'this reminds me of the Dutch 2001a caravan full of smoky people Auld Lang Syne' # construct Readability Metrics API url ...
2
votes
2answers
387 views

Why does text retrieved from pages sometimes look like gibberish?

I'm using urllib and urllib2 in Python to open and read webpages but sometimes, the text I get is unreadable. For example, if I run this: import urllib text = ...
0
votes
2answers
3k views

Web-scraping JavaScript page with Python

I'm trying to develop a simple web scraper. I want to extract text without the HTML code. In fact, I achieve this goal, but I have seen that in some pages where JavaScript is loaded I didn't obtain ...
1
vote
1answer
230 views

Fetching 'https' pages using 'urlopen' vs getpage()

I'm trying to get an 'https' webpage(for eg: https://github.com/twitter/bootstrap) using urlopen(), it returns the page without any problem. But we are evaluating Twisted for a new project and trying ...
2
votes
3answers
264 views

Gibberish from urlopen

I am trying to read some utf-8 files from the addresses in the code below. It works for most of them, but for some files the urllib2 (and urllib) is unable to read. The obvious answer here is that ...
2
votes
2answers
867 views

How does urllib.urlopen() work?

Let's consider a big file (~100MB). Let's consider that the file is line-based (a text file, with relatively short line ~80 chars). If I use built-in open()/file() the file will be loaded in lazy ...
4
votes
3answers
4k views

Web scraping urlopen in python

I am trying to get the data from this website: http://www.boursorama.com/includes/cours/last_transactions.phtml?symbole=1xEURUS It seems like urlopen don't get the html code and I don't understand ...

1 2