Requests is a full-featured Python HTTP library with an easy-to-use, logical API.
0
votes
0answers
27 views
python requests module get method followed by json method getting stuck.
I am facing an issue with 'requests' module of python.
I have these three lines of code:
print '\n\nTrying to fetch Tweets from URL %s' % url
newTweets = requests.get(url).json()
print 'Fetched %d ...
1
vote
2answers
30 views
urllib2 works where request doesn't
EDIT: Solved! See below.
I'm a recent convert to using the requests library for python. However, I'm encountering a situation where urllib2 works and requests doesn't.
import requests, urllib2
url = ...
0
votes
0answers
16 views
random error with python requests module while sending GCM messages
I am using python requests module to send GCM(Google Cloud Messages) messages. I am sending millions of messages in a day. But sometimes this weird error pops up
[Errno 185090050] _ssl.c:340: ...
3
votes
2answers
38 views
How to download large file in python with requests.py?
Requests is a really nice library. I'd like to use it for download big files (>1GB).
The problem is it's not possible to keep whole file in memory I need to read it in chunks. And this is a problem ...
0
votes
1answer
14 views
Generating Tableau Trusted Tickets with curl or Python?
I'm working on a portal site that will use Tableau Trusted Ticket authentication (as described here), but having some trouble generating tickets.
One thing I wanted to verify before continuing ...
0
votes
1answer
34 views
How do I save a Netscape style cookies.txt file using Python 2.7 and Requests?
I am using requests to fetch a webpage and I would like to save the cookies in a Netscape-style cookies.txt file. How can I achieve this? I have tried the following:
import requests
import ...
0
votes
1answer
29 views
Python requests/urllib3 raises 'httplib.BadStatusLine' error if called many times?
I have a python program which utilizes python requests. I want to be able to run this program many times sequentially. The code can execute on its own, and run without any errors. However, when I try ...
0
votes
2answers
30 views
python requests chunked response
I am using the Python Requests package to write a simple rest client.
Here is my code -
r = requests.get(url, auth=(user, passwd), stream=True, verify=False)
print('headers: ')
...
0
votes
0answers
74 views
IronPython - Error in URL request
When using IronPython I make a URL request to get an XML (with python-requests), in the VisualStudio's console I get the following error:
failed to parse CPython sys.version: '2.7.3 ()'
What does ...
6
votes
2answers
111 views
How to write a web proxy in Python
I'm trying to write a web proxy in python. The goal is to visit a url like: http://proxyurl/http://anothersite.com/ and see he contents of http://anothersite.com just like you would normally. I've ...
0
votes
1answer
17 views
Make 2 HTTP-requests in a session through Tor with the same exit-node
I would like to use the library requests to make two HTTP-requests within a session.
However I don't know whether the IP adresses will be the same for both HTTP-requests (within that session).
Can ...
1
vote
1answer
89 views
Web Proxy like Optimizely [closed]
I'm trying to write a proxy like Optimizely. If you go to http://optimizely.com you can try Optimizely on any site. Here's an example: https://www.optimizely.com/edit#url=espn.com.
I've dissected the ...
0
votes
1answer
50 views
How to forward file from request to other app in Django?
I need to send all data from form in Django to other application (through REST API).
The problem is with forwarding InMemoryUploadedFile (which i'm catching it from request).
I have big problem with ...
1
vote
2answers
52 views
Scraping a website that requires being logged in
I'm trying to scrape a website with BeautifulSoup. The site in question requires me being logged in. Please have a look on my code.
from bs4 import BeautifulSoup as bs
import requests
import sys
...
0
votes
1answer
35 views
Sending POST data with Requests library in Python
I am unable to send POST data to access my account using requests library in Python. The resulting soup is the same as if no POST has been sent This is the code I have been using and worked on a ...
1
vote
1answer
64 views
How do I do a basic REST Post with Requests in Python?
I am having trouble using Requests
The API I am testing indicates the parameter device_info to be POSTED in the message body. It also says that the device_info as a form field. In all the ...
2
votes
3answers
136 views
Closing “Python Requests” connection from another thread
To close the application as soon as possible, can I interrupt requests.post call from another thread and have it terminate connection immediately ?
I played with adapters, but no luck so far:
for ...
0
votes
1answer
28 views
Establishing session with web app to crawl
I am planning to write a website crawler in Python using Requests and PyQuery.
However, the site I am targeting requires me to be signed into my account. Using Requests, is it possible for me to ...
-1
votes
2answers
50 views
How can I see the actual data Requests sends over the wire?
(This is a follow-up question to this one)
How can I tell urllib3 to log the FULL request, including, but not limited to:
URL
query parameters
headers
body
and anything else which is sent inside ...
0
votes
1answer
50 views
Log all requests from the python-requests module
I am using python Requests. I need to debug some OAuth activity, and for that I would like it to log all requests being performed. I could get this information with ngrep, but unfortunately it is not ...
1
vote
0answers
59 views
couchdb update handler for PUT for JSON query param not working
I am working on update handlers with couchdb and am facing this strange problem:
Here goes my update handler:
"updates": {
"temp": "function(doc, req) {var inc_amount ...
0
votes
1answer
51 views
Submitting uploaded Imgur image to gallery
This is a follow up question to:
uploading a file to imgur via python
I just uploaded an image to Imgur, but I've noticed it isn't public for view. At their API website they say that after its ...
0
votes
3answers
439 views
ImportError: No module named 'requests'
Getting this error when trying to run a Python script. I have downloaded a requests-1.2.0 folder but I have no idea what to do with it. I've tried running the setup.py file contained in the download ...
0
votes
1answer
65 views
python web-client multipile set-cookie header, get raw set-cookie header
i am using python-requests on python 2.7,
i am trying to authenticate against a web-server that returns multiple set-cookie headers in the response.
python-requests keeps only one of those cookies.
i ...
0
votes
1answer
73 views
Python urllib2 and SSH proxy — throws a 404 not found
I'm trying use SSH tunnels inside of Python's urllib2.
Creating the tunnel:
ssh -N user@machine.place.edu -L 1337:localhost:80
The above line should use port 80 on the remote machine and port ...
0
votes
1answer
65 views
uploading a file to imgur via python
I'm having trouble uploading an image to Imgur using the python requests module and the Imgur API.
My code is the following:
import base64
import json
import requests
from base64 import b64encode
...
0
votes
0answers
70 views
HTTPSConnectionPool Max retries exceeded
I've got a django app in production running on nginx/uwsgi. We recently started using SSL for all our connections. Since moving to SSL, I often get the following message:
...
0
votes
0answers
40 views
Error with threaded https requests (python requests library)
I'm trying to make some https requests using python 'requests' library. (for shop victoriassecret.com, checking the price in case it has been lowered) When I send them one by one it works fine.
But ...
0
votes
1answer
83 views
Requests Library - Error Handling - HTTP Requests - Python
I'm having a slight problem with the requests library.
Say for example I have a statement like this in Python:
try:
request = requests.get('google.com/admin') #Should return 404
except ...
-1
votes
1answer
66 views
Python requests: How to PUT a string in body?
I need to PUT data from a string (no dict) as the body of the call to a REST API.
When I call
r = requests.put(url, data = string)
then I can see in r.request.body after this call that it is None. ...
0
votes
1answer
33 views
Python Requests library returns wrong status code
The Python code below returns '403':
import requests
url = 'http://bedstardirect.co.uk/star-collection-braemar-double-bedstead.html'
r = requests.get(url)
print r.status_code
But this page is valid ...
1
vote
1answer
62 views
How can I use requests with Ironpython?
I'm trying to run a script that was written with python 2.7, using some libraries that I've installed on my Windows machine - among them numpy scipy, scikit, requests and others.
Now I need to use a ...
3
votes
1answer
63 views
Python requests - POST data from a file
I have used curl to send POST requests with data from files.
I am trying to achieve the same using python requests module. Here is my python script
import requests
payload=open('data','rb').read()
r ...
1
vote
1answer
27 views
Requests lib and py2exe COM server issue
I'm working in a Com Server DLL where I use requests to make POST a multipart form along with some XML file.
Localy, it works great and with no error. I can call the COM object methods and it returns ...
1
vote
1answer
56 views
How to use python requests with HTTPS
I have this code:
import requests
url = 'https://mobile.twitter.com/session/new'
payload = {
'username': 'username',
'password': 'password',
}
with requests.Session() as c:
...
2
votes
1answer
52 views
IndexError: list index out of range
Im am currently working on a piece of code that appears to be working for several websites but when ran again the website below i get the error. IndexError: list index out of range. At first i though ...
0
votes
0answers
21 views
COuld not identify the .png file in rest
I am using the Python -requests module to make rest call from server .
Based on a rest GET I am trying to get a Png image from the server .
TO handle that I am using Pyhon-imaging library
Here is ...
1
vote
1answer
57 views
Set read timeout in Python-Requests
Running into the following exception while trying to query a RESTful api(note not my api, so going in and doing anything with the actual server is unfortunately not possible):
...
1
vote
2answers
85 views
Cannot install package 'requests' for Python
I tried installing the requests package for python on my Ubuntu 10.04 server using:
$ pip install requests
But I keep getting the return:
Downloading/unpacking requests Could not fetch URL
...
1
vote
1answer
76 views
Python requests library pass PDF to Django server
So, I know the sever code works, as this site is currently in production and working fine. I, on the other hand, have developed a test script to unit test the API. I'm trying, using the HTTP POST ...
1
vote
1answer
144 views
In what way is grequests asynchronous?
I've been using the python requests library for some time, and recently had a need to make a request asynchronously, meaning I would like to send off the HTTP request, have my main thread continue to ...
4
votes
3answers
151 views
Using Python Requests to 'bridge' a file without loading into memory?
I'd like to use the Python Requests library to GET a file from a url and use it as a mulitpart encoded file in a post request. The catch is that the file could be very large (50MB-2GB) and I don't ...
0
votes
1answer
51 views
Querying ElasticSearch with Python Requests not working fine
I'm trying to do full-text search on a mongodb db with the Elastic Search engine but I ran into a problem: no matters what search term I provide(or if I use query1 or query2), the engine always ...
2
votes
2answers
73 views
Acceptance Testing with Requests Library (python)
I'm having issues writing an acceptance test for login functionality using the requests library. The login was implemented using post method and I have no way to directly alter a query string and ...
0
votes
1answer
66 views
Insert relational data in SQL Alchemy with API queries in Python
Maybe my previous question was too much long and endless to answer, sorry for that... I will try to be more specific shortening my previous question
I can extract from an API query (json format as ...
0
votes
3answers
46 views
Python Request Post with param data
This is the raw request for an API call:
POST http://192.168.3.45:8080/api/v2/event/log?sessionKey=b299d17b896417a7b18f46544d40adb734240cc2&format=json HTTP/1.1
Accept-Encoding: gzip,deflate
...
2
votes
0answers
117 views
How to insert relational data (many to many) in SQL Alchemy by means of API queries in Python
EDIT: I have made a short question because I think this one is too long, sorry
First of all, I am a newcomer to databases, programming languages and so on... so sorry if this question is not so ...
0
votes
1answer
39 views
Cap download size with Python requests library
I'm crawling a bunch of web pages using Python's request library, but occasionally the crawler will stumble upon an absolutely mammoth page, be it a PDF or video or otherwise gargantuan file. Is ...
0
votes
1answer
51 views
Requests body empty
Why does the following print None?
import requests
r = requests.request('http://cnn.com', data={"foo":"bar"})
print r.request.body
# None
If you change cnn.com to www.cnn.com, it prints the proper ...
1
vote
2answers
50 views
lxml unicode output issue
New to python and lxml so please bear with me. Now stuck with what appears to be unicode issue. I tried .encode, beautiful soup's unicodedammit with no luck. Had searched the forum and web, but my ...
