Tagged Questions
0
votes
2answers
42 views
Why does python urllib2 urlopen return something different from the browser on API call
I need to routinely access and parse XML data from a website of the form:
https://api.website.com/stuff/getCurrentData?security_key=blah
I cannot post the actual connections because of the secure ...
0
votes
1answer
300 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
...
1
vote
0answers
324 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): ...
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 ...
1
vote
1answer
174 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
...