The urlopen tag has no wiki summary.
4
votes
1answer
1k views
Python 3, let json object accept bytes or let urlopen output strings
With Python3 I am requesting from some url a json document.
response = urllib.request.urlopen(request)
The response object is a file like object with read, readline functions.
Normally a json ...
2
votes
1answer
866 views
Mercurial and nginx. Error 10054
When I push files to the server, then after 60 seconds i get "urlopen error [Errno 10054]". I think it's because i push large files.
I use nginx web-server with fast-cgi process. What nginx parametr ...
1
vote
1answer
181 views
If I use urlretrive and urlopen to access the same url, I end up with different files. Why?
I'm fairly new to python, (and programming in general), and I've ran into some trouble while writing a program to fetch midi files from the internet. Below is some code that I expected to write two ...
4
votes
2answers
2k views
DeadlineExceededError: ApplicationError: 5 in using urllib2.urlopen() function
In my application I am using the urllib2.urlopen() function to call an api and get the result from that api.But this is not working fine.Sometimes it shows the result but sometimes it gives the ...
1
vote
5answers
153 views
Extract text from a file object using .read()
I'm trying to read the source of a website with this code:
import urllib2
z=urllib2.urlopen('http://skreemr.com/results.jsp?q=said+the+whale&search=SkreemR+Search')
z.read()
print z
txt = ...
3
votes
1answer
172 views
Getting the error text from `urllib2.urlopen`
I used Python's urllib2.urlopen and got a 500 error from the server. How do I find the text of the error? I'm hoping that it has useful information.
2
votes
1answer
458 views
How use openurl & multiprocessing get URL different data in the same time?
This loop help get some text data from web service:
while True:
u = urllib2.urlopen('http://url/%d.csv' %inputd)
f=open('/folder/%s.csv' $inputd,'a')
csvread = csv.reader(u)
csvwrite ...
0
votes
1answer
738 views
How to reliably process web-data in Python
I'm using the following code to get data from a website:
time_out = 4
def tryconnect(turl, timer=time_out, retries=10):
urlopener = None
sitefound = 1
tried = 0
while (sitefound != ...
0
votes
1answer
270 views
python urllib.request.urlopen recursion fail
so i have the code
def constructGraph(self,url,doit=5):
if doit!=0:
m = urllib.request.urlopen(url)
print('test')
self.constructGraph('http://example.com',doit-1)
but ...
4
votes
2answers
761 views
urlib2.urlopen through proxy fails after a few calls
Edit: after much fiddling, it seems urlgrabber succeeds where urllib2 fails, even when telling it close the connection after each file. Seems like there might be something wrong with the way urllib2 ...
2
votes
1answer
543 views
How do I access the original response headers that contain a redirect when using urllib2.urlopen
I'm trying to parse the location header of an HTTP response that is returned after using urllib2.urlopen, but the only response headers that I receive are from the target redirect --- not the original ...
1
vote
2answers
5k views
how to handle “getaddrinfo failed”?
Hallo, i have problem. i use mechanize, python 2.7 to connect some sites (the code is not important right now) i have list of sites and i connect to them one by now. When it happens the site from my ...
3
votes
3answers
3k views
How to fetch a non-ascii url with Python urlopen?
I need to fetch data from a URL with non-ascii characters but urllib2.urlopen refuses to open the resource and raises:
UnicodeEncodeError: 'ascii' codec can't encode character u'\u0131' in position ...
0
votes
1answer
81 views
Which registry / environment (or other) settings does urllib2.urlopen use to determine proxy settings?
Following on from this question: What is causing urllib2.urlopen() to connect via proxy?
I'd like to know which operating system & environmental settings can affect urllib2.urlopen?
For example, ...
0
votes
0answers
475 views
How can we implement urllib2's urlopen and read functionality using WinInet functions?
I've trying to implemnet the python lib's urllib2's urlopen function using WinInet function. I think python automatically takes care of the cookies and sessions.
Here's the code snippet of python:
...
0
votes
2answers
381 views
Python urllib2.urlopen bug: timeout error brings down my Internet connection?
I don't know if I'm doing something wrong, but I'm 100% sure it's the python script brings down my Internet connection.
I wrote a python script to scrape thousands of files header info, mainly for ...
1
vote
1answer
336 views
Get filename when using urllib.urlopen
I'm using urllib.urlopen to read a file from a URL. What is the best way to get the filename? Do servers always return the Content-Disposition header?
Thanks.
1
vote
2answers
343 views
unbuffered urllib2.urlopen
I have client for web interface to long running process. I'd like to have output from that process to be displayed as it comes. Works great with urllib.urlopen(), but it doesn't have timeout ...
-1
votes
1answer
249 views
AppEngine no host given exception
I've got a Python app, that uses urllib.urlopen. It works fine on dev_appserver.py, but throws [Errno http error] no host given error on my GAE production server. The code is exactly the same, the ...
0
votes
1answer
687 views
Urllib raising invalid argument URLError in Python 3, urllib.request.urlopen
New to Python, but I'm trying to...retrieve data from a site:
import urllib.request
response = urllib.request.urlopen("http://www.python.org")
This is the same code I've seen from the Python 3.1 ...
2
votes
1answer
2k views
python mechanize javascript submit button problem!
im making some script with mechanize.browser module.
one of problem is all other thing is ok, but when submit() form,it not working,
so i was found some suspicion source part.
in the html source i ...
2
votes
1answer
750 views
Why urllib2.urlopen can not open pages like “http://localhost/new-post#comment-29”?
I'm curious, how come I get 404 error running this line:
urllib2.urlopen("http://localhost/new-post#comment-29")
While everything works fine surfing http://localhost/new-post#comment-29 in any ...
1
vote
1answer
200 views
How to By pass WP super cache using python?
I'm trying to collecting data from a frequently updating blog, so I simply use a while loop which includes urllib2.urlopen("http:\example.com") to refresh the page every 5 minutes to collect the data ...
3
votes
3answers
2k views
Does urllib2.urlopen() cache stuff?
They didn't mention this in python documentation. And recently I'm testing a website simply refreshing the site using urllib2.urlopen() to extract certain content, I notice sometimes when I update the ...
1
vote
1answer
228 views
Python auth_handler not working for me
I've been reading about Python's urllib2's ability to open and read directories that are password protected, but even after looking at examples in the docs, and here on StackOverflow, I can't get my ...
3
votes
2answers
2k views
Detecting timeout erros in Python's urllib2 urlopen
I'm still relatively new to Python, so if this is an obvious question, I apologize.
My question is in regard to the urllib2 library, and it's urlopen function. Currently I'm using this to load a ...
7
votes
6answers
4k views
How can I speed up fetching pages with urllib2 in python?
I have a script that fetches several web pages and parses the info.
(An example can be seen at http://bluedevilbooks.com/search/?DEPT=MATH&CLASS=103&SEC=01 )
I ran cProfile on it, and as I ...
3
votes
5answers
394 views
Caching options in Python or speeding up urlopen
Hey all, I have a site that looks up info for the end user, is written in Python, and requires several urlopen commands. As a result it takes a bit for a page to load. I was wondering if there was a ...
0
votes
2answers
596 views
Python: urlopen not downloading the entire site
Greetings,
I have done:
import urllib
site = urllib.urlopen('http://www.weather.com/weather/today/Temple+TX+76504')
site_data = site.read()
site.close()
but it doesn't compare to viewing the ...
3
votes
4answers
3k views
Python: Urllib.urlopen nonnumeric port
for the following code
theurl = "https://%s:%s@members.dyndns.org/nic/update?hostname=%s&myip=%s&wildcard=NOCHG&mx=NOCHG&backmx=NOCHG" % (username, password, hostname, theip)
conn = ...
4
votes
1answer
837 views
Google App Engine: upload_data fails because “target machine actively refused it” on devserver
I'm trying to upload data from a CSV to my app using the devserver:
appcfg.py upload_data --config_file="DataLoader.py" --filename="data.csv" --kind=Foo --url=http://localhost:8083/remote_api ...
2
votes
2answers
163 views
Python - merging many url's and parsing them
Below is script that I found on forum, and it is almost exactly what I need except I need to read like 30 different url's and print them all together.I have tried few options but script just breaks. ...
1
vote
1answer
97 views
Which of these is a good way to request an API?
Whenever looking at API libraries for Python, there seems to be about half of them simply using:
response = urllib2.urlopen('https://www.example.com/api', data)
and about half using:
connection = ...
7
votes
1answer
608 views
Urllib's urlopen breaking on some sites (e.g. StackApps api): returns garbage results
I'm using urllib2's urlopen function to try and get a JSON result from the StackOverflow api.
The code I'm using:
>>> import urllib2
>>> conn = ...
0
votes
1answer
513 views
urllib ignore authentication requests
I'm having little trouble creating a script working with URLs. I'm using urllib.urlopen() to get content of desired URL. But some of these URLs requires authentication. And urlopen prompts me to type ...
6
votes
3answers
2k views
Tell urllib2 to use custom DNS
I'd like to tell urllib2.urlopen (or a custom opener) to use 127.0.0.1 (or ::1) to resolve addresses. I wouldn't change my /etc/resolv.conf, however.
One possible solution is to use a tool like ...
23
votes
6answers
11k views
timeout for urllib2.urlopen() in pre Python 2.6 versions
The urllib2 documentation says that timeout parameter was added in Python 2.6. Unfortunately my code base has been running on Python 2.5 and 2.4 platforms.
Is there any alternate way to simulate the ...
