PycURL is a Python interface to libcurl.
1
vote
1answer
20 views
PyCurl. 'Can't pickle Curl object' error on Windows x64
import multiprocessing
import time
import pycurl
class Bot(multiprocessing.Process):
def __init__(self):
multiprocessing.Process.__init__(self)
self.c = pycurl.Curl()
...
0
votes
1answer
37 views
Python Curl writefunction not working onsecond call
I've written a simple script in Python.
It parses the hyperlinks from a webpage, and afterwards these links are retrieved to parse some information.
I have similar scripts running and re-using the ...
0
votes
0answers
23 views
pycurl nosignal & timeout <= 999ms
import pycurl
pycurl.version
# libcurl/7.29.0 GnuTLS/2.12.23 zlib/1.2.7 libidn/1.25 librtmp/2.3
c = pycurl.Curl()
c.setopt(pycurl.TIMEOUT_MS, 1000)
c.setopt(pycurl.URL, 'http://example.com/')
...
0
votes
1answer
31 views
pycurl subprocess in a separate Thread
I need help to get the output from pycurl, that I'm trying to run in subprocess. This output I'm trying to put in a queue and than pull this queue out in a different class.
unfortunately, Right now I ...
0
votes
1answer
46 views
Still can't stop the Thread
I want to stop the thread with simple CTR+C, but data is keep coming and coming, so I have to close the window and start it again. Help me please to fix the issue. In order to see what I'm saying, ...
1
vote
1answer
190 views
pycurl https error: unable to get local issuer certificate
>>> import pycurl
>>> c = pycurl.Curl()
>>> c.setopt(c.URL, 'https://quora.com')
>>> c.perform()
Traceback (most recent call last):
File "<stdin>", line ...
0
votes
2answers
202 views
Trouble installing pycurl on Mac OS X 10.6.8
I am working on a python project (I have python 2.7) that uses the eBay SDK module found here: https://github.com/timotheus/ebaysdk-python
I was able to install ebaysdk but had trouble when running ...
1
vote
1answer
123 views
How can I get the response body from pycurl multi curl requests.
I seem to be hitting a brick wall with trying to run curl multi requests. It seems as though my code is performing the requests successfully, but I have no idea how to get the actual response body ...
0
votes
2answers
66 views
Get header values of reply using pycurl
I would like to know some ways to capture and access the header information of the reply when making a request with PyCurl:
c = pycurl.Curl()
c.setopt(c.URL,'MY_URL')
...
0
votes
1answer
107 views
Python Requests vs PyCurl Performance
How does the Requests library compare with the PyCurl performance wise?
My understanding is that Requests is a python wrapper for urllib whereas PyCurl is a python wrapper for libcurl which is ...
0
votes
1answer
52 views
extract data from a dictionary returned by pycurl
I have this:
import pycurl
import pprint
import json
c = pycurl.Curl()
c.setopt(c.URL, 'https://mydomainname.com')
c.perform()
the above code return a dictionary like this:
{"name":"steve", ...
0
votes
1answer
38 views
pycurl login joomla website
I try create small script for login joomla web site whit python pycurl,
im write this code :
import sys, re
import pycurl
import cStringIO
import time
import urllib
def LoginJoomla(url):
buf = ...
0
votes
0answers
31 views
pycurl tests/tests_socketopen.py crash
import pycurl
import StringIO
import socket
def socketopen(family, socktype, protocol):
print family, socktype, protocol
s = socket.socket(family, socktype, protocol)
...
0
votes
0answers
49 views
Python - PyCurl - Parse Amazon PartnerNet page
I read that the easiest way to access the PartnerNet information is by parsing the page.
I found a working PHP example and I tried to modify it for PyCurl.
Here's my code:
post_fields = ...
0
votes
1answer
53 views
What is PyCurl's default timeout
Well, I think the title of the question is very self explanatory, so you probably don't need to keep reading, but here it goes:
I have been working with PyCurl for a while, and I've always set my ...
0
votes
0answers
13 views
query related to updation by terminal [closed]
I'm unable to update or install new packages.
wheneer i try to do so,it comes out with output that you have held broken packages.
what could be the possible reasons and how could i remove them?
...
0
votes
1answer
42 views
Access to a simple API with Python
I have a simple api endpoint:
http://example.de/create.json
I need to send the following via POST:
-text
-url
-username
The curl command for this task looks like this:
curl --data-urlencode ...
2
votes
0answers
178 views
How to force specific network interface for outgoing connection in Python under Windows 7?
I have two network adapters in Windows 7 environment, and both of them are connected to Internet:
Ethernet Adapter (local address 10.9.187.251, external address 32.181.63.52)
Wireless LAN Adapter ...
0
votes
0answers
39 views
Why does pycurl use almost 100% of a cpu for file uploads?
I'm trying to upload a large file, on the order or 100MB and it's using about 90% of a single CPU and I'm wondering where all the time is spent and if there might be a way to reduce it, even if it ...
0
votes
0answers
27 views
Is there a way to PUT the contents of a variable with pycurl?
I'm getting there is but after searching the web for an answer all the examples seem to be focused on how to do a GET. As a bonus question is there a way to disable SSL compression?
0
votes
2answers
479 views
Linux Yum Fatal Python error: pycurl: libcurl link-time version is older than compile-time version
So this error is driving me crazy, I've search the web multiple times, ran a few things and no results. I get the following error when using yum.
[root@texas pycurl-7.19.0]# yum update
Fatal Python ...
0
votes
0answers
41 views
can't import pycurl in libreoffice
I need to import pycurl in libreoffice python environment. Unfortunately, it is not included in it.
How can I integrate it? I found a libcurl.so.4 in /opt/libreoffice3.6/program/, but that might not ...
0
votes
1answer
107 views
How can I login to a website using python with request and beautifulsoup? [closed]
I was told I need to use request/beautifulsoup, but also pycurl and urllib2. I am not a dev by trade and will be doing this on the fly. What is the best way to log into a website and navigate to a ...
1
vote
0answers
54 views
Disconnecting the connection in pycurl
I'm writing a python code to download files using pycurl.
Is there any possibility to inform my program to disconnect the connection?
I mean that while the code is running, I want to disconnect the ...
0
votes
1answer
155 views
Pause and resume downloading with pycurl
I'm writing a code to download files using pycurl. So I want to know that is there a possibility to pause my download and then resume it from wherever it's been paused?
Does pycurl support these ...
0
votes
0answers
50 views
custom callbacks from curl to pycurl [closed]
How would I translate the custom callback
$ curl -X DELETE https://testsite.com/test/test/sample/100
into pycurl?
c = pycurl.Curl()
c.setopt(c.URL, 'https://testsite.com/test/test/sample/100')
...
3
votes
1answer
162 views
Fire off function without waiting for answer (Python)
I have a stream of links coming in, and I want to check them for rss every now and then. But when I fire off my get_rss() function, it blocks and the stream halts. This is unnecessary, and I'd like to ...
0
votes
1answer
60 views
Can HTMLParser streaming be implemented using urllib2 in python
I am writing HTMLParser implementation in python which will process a web page downloaded from the internet.
Here is my code:
class Parser(HTMLParser.HTMLParser):
...
parser=Parser()
httpRequest ...
1
vote
0answers
119 views
Improve multithreading with network IO and database queries
I'm writing a script that:
fetch a list of urls from a db (about 10000 urls)
download all the pages and insert them into the db
parse the code
if(some condition) do other inserts into the db
I ...
0
votes
0answers
86 views
Assertion failed in pycurl when trying to get image from web
I'm trying to get an image from a site with this code:
image="http://the.site.com/view/ashx/Handler.ashx?Command=Avatar&TC=TQB"
curlobj = pycurl.Curl()
curlobj.setopt(pycurl.COOKIEFILE, '')
...
0
votes
0answers
36 views
PyCurl exception code for speed limit violation
Documentation says that curl.setopt(curl.LOW_SPEED_LIMIT, <value>) allows to set the minimum transfer speed below which download process should be aborted. But how can i know that the speed was ...
0
votes
0answers
165 views
pyCURL - Removing internal content-length header doesn't work
I see that curl supports an option to remove internal headers added by curl (like content-length) by using -H "Content-Length:", while it works with curl command-line, but it doesn't work with pyCURL, ...
0
votes
1answer
46 views
pycurl CONNECT_TIME on windows
I am using windows with pycurl, I am having an issue with timings when returning the CONNECT_TIME where by timings are not accurate.
Is there a way to make the connect_time in windows more accurate ...
0
votes
1answer
170 views
yum not working on my fedora [closed]
Yesterday unknowingly I installed curl 7.19.7 package but my FEDORA 16 had already installed curl 7.21.7 (latest version than the one I installed).
Now whenever I execute yum command (eg. yum ...
3
votes
1answer
279 views
Python(2.6) cStringIO unicode support?
I'm using python pycurl module to download content from various web pages. Since I also wanted to support potential unicode text I've been avoiding the cStringIO.StringIO function which according to ...
0
votes
1answer
228 views
(QNAP NAS)Linux - Installing pycurl (libcurl.a not found)
I'm trying to install Pycurl on my NAS(QNAP TS-459) and I get error "libcurl.a: No such file or directory".
Here are logs from console:
[admin@MYSERVER pycurl-7.19.0]# uname -mrs
Linux 2.6.33.2 i686
...
1
vote
1answer
411 views
Translate CURL command to PyCurl
I'm struggling to translate this command (that I can successfully run)
curl -X POST https://www.googleapis.com/upload/drive/v2/files?uploadType=multipart \
-H "Authorization: Bearer ACCESS_TOKEN" \
...
-1
votes
2answers
268 views
How to use pycurl when url contain non-English language?
This is the example on the pycurl's sourceforge page. And if the url contain like Chinese. What process should we do? Since pycurl does not support unicode?
import pycurl
c = pycurl.Curl()
...
1
vote
0answers
235 views
Split a file into parts to parallel download with pycurl
I want to download a file with pycurl in python. So I want to find a way to download it in multiple parts that increases the speed of downloading. I know in theory it is the same as downloading the ...
1
vote
3answers
223 views
getting the file size with pycurl
I want to write a downloader with python and I use PycURL as my library, but I got a problem.
I can't get the size of the file wich I wanna download. Here is part of my code :
import pycurl
url = ...
0
votes
1answer
194 views
Pycurl works on development but not on production. Why?
The following function connects to an API and returns a json object. Although it only works on development. In the production server it just returns False.
Any ideas why it doesn't work in a ...
1
vote
0answers
196 views
converting curl command to pycurl
So the curl command I'm using is as follows:
cmd = "curl --write-out %{http_code} -X PUT -T " + self.basedir + putfile + " -# -o /dev/null " + self.uri + "/" + self.dist + "/" + putfile
I'd like ...
0
votes
2answers
522 views
Pycurl Error : AttributeError: 'module' object has no attribute 'Curl'
Brand new raspberry pi using the debian image from the pi site.
I used sudo apt-get install python-pycurl
My script looks like this
import pycurl
c = pycurl.Curl()
c.setopt(c.POST, 1)
...
0
votes
1answer
229 views
Pycurl: how to determine duration of a request
My task is to do periodic requests to server and write time of this request to database. I use Python 2.7.3, cURL and pycurl as wrapper for cURL. I do request like so:
import pycurl
c = pycurl.Curl()
...
0
votes
1answer
323 views
Twitter Stream API, Parameter follow has unparseable items
Recently I'm doing a small project on twitter, and I want to get tweets from some specific users.
So I use Streaming API, pycurl and python.
The API Reference says the follow parameter is:
A ...
0
votes
1answer
32 views
PycURL support for PROXYTYPE_HTTP_1_0?
libcurl documentation says that option CURLPROXY_HTTP_1_0 has been supported since 7.19.4.
PycURL version (on Debian 6) shows libcurl/7.21.0.
But I can't find the constant PROXYTYPE_HTTP_1_0 (that's ...
0
votes
1answer
214 views
Obtaining data from blocking source in Gevent loop callback
I'm trying to use Pycurl with Gevent in order to perform HTTP uploads. For this I'm relying on the geventcurl.py module, which alters libcurl's Multi API to use Gevent's event loop.
The problem ...
1
vote
1answer
192 views
pycurl equivalent of “curl --data-binary”
I'd like to know the equivalent of this curl command in pycurl:
curl --data-binary @binary_data_file.bin 'http://server/myapp/method'
Note: The above curl statement uses the POST method. I need to ...
1
vote
1answer
209 views
pycurl only geting part of the response
I'm making a request in python using pycurl to a URL which returns a reasonably large json formatted response. When I goto the URL in a browser I see the entire contents, but if I use pycurl and print ...
1
vote
2answers
138 views
what is the use of pycurl.INFOTYPE_HEADER_OUT?
In php there are lines of code like:
curl_setopt($ch, CURLINFO_HEADER_OUT, true);
I don't get the exact meaning of it; I assume it is something when set to true means you get the header information ...
