Top "Pycurl" questions

PycURL is a Python interface to libcurl.

Error in installation pycurl 7.19.0

I need install this specific version (7.19.0) pycurl. When I try to install with this command: pip install pycurl==7.19.0 I'm receiving …

python ubuntu installation pip pycurl
Create missing directories in ftplib storbinary

I was using pycurl to transfer files over ftp in python. I could create the missing directories automatically on my …

python pycurl ftplib
Not able to install io module in python 3.4 on win10

I'm trying to install the io module in python3.4 or in py 2.7 on my Win10 with python -m pip install …

python io pycurl
pycurl https error: unable to get local issuer certificate

>>> import pycurl >>> c = pycurl.Curl() >>> c.setopt(c.URL, 'https://quora.…

python windows ssl ssl-certificate pycurl
How to read the header with pycurl

How do I read the response headers returned from a PyCurl request?

python curl pycurl
How to trigger authenticated Jenkins job with file parameter using standard Python library

We are currently triggering Jenkins jobs from a Python script with the help of PycURL. We would like, however, to …

python rest post jenkins pycurl
Posting raw data with Python

I'm playing around with the Google Checkout API and I want to pull it into a Django app. I need …

python post curl urllib2 pycurl
PyCurl installed but not found

I've been trying to install pycurl in a virtualenv with easy_install, and it appears to install correctly: (xxx) $ easy_…

python curl libcurl pycurl
Having trouble installing pycurl on windows

I'm having trouble getting pycurl installed on my windows computer. At first I tried pip, but ran into the “Please …

python windows pycurl
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.…

python dictionary pycurl