Tagged Questions
0
votes
0answers
48 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
3answers
853 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.
...
1
vote
2answers
343 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
...
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 ...