Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

30
votes
6answers
5k views

Which is best in Python: urllib2, PycURL or mechanize?

Ok so I need to download some web pages using Python and did a quick investigation of my options. Included with Python: urllib - seems to me that I should use urllib2 instead. urllib has no cookie ...
10
votes
6answers
2k views

Screen scraping with Python

Does Python have screen scraping libraries that offer JavaScript support? I've been using pycurl for simple HTML requests, and Java's HtmlUnit for more complicated requests requiring JavaScript ...
8
votes
0answers
676 views

Install pycurl on Mac OSX Snow Leopard [closed]

After hours of reading on the internet I found the easiest solution to install pycurl on mac os x. Make sure you have Xcode UNIX tool installed and run this command. sudo env ARCHFLAGS="-arch ...
7
votes
4answers
11k views

Why can't Python find shared objects that are in directories in sys.path?

I'm trying to import pycurl: $ python -c "import pycurl" Traceback (most recent call last): File "<string>", line 1, in <module> ImportError: libcurl.so.4: cannot open shared object file: ...
6
votes
5answers
4k views

pycurl installation on Windows

I am not able to install pycurl on Windows on Python2.6. Getting following error: C:\Documents and Settings\vijayendra\Desktop\Downloads\pycurl-7.19.0>python setup.py install ...
6
votes
4answers
9k views

How do i install pyCurl?

I am VERY new to python. I used libcurl with no problems and used pyCurl once in the past. Now i want to set it up on my machine and dev. However i have no idea how to do it. I rather not DL libcirl ...
5
votes
3answers
927 views

Custom headers with pycurl?

Hi i'm wondering if i can send a custom header like "yadayadayad" to the server with the pycurl requsest ? Thanks :)
4
votes
2answers
1k views

How to get HTTP status message in (py)curl?

spending some time studying pycurl and libcurl documentation, i still can't find a (simple) way, how to get HTTP status message (reason-phrase) in pycurl. status code is easy: import pycurl import ...
4
votes
1answer
2k views

What good tutorials exist for learning pycURL?

I'm planning on building my own FTP client in Python for learning purposes. I'm planning on using PycURL but the documentation seems to be lacking. What good tutorials are there for learning pycURL? ...
4
votes
3answers
2k views

How to read the header with pycurl

How do I read the response headers returned from a PyCurl request?
3
votes
2answers
94 views

Best non-interactive approach to enter a string into a formular field and get the resulting text

In some website for which I have access, there are some input fields. In the sixth field I need to enter some input string from a list of 10000 strings, then a new page appears, for which I would just ...
3
votes
3answers
175 views

Trouble finding library that supports http PUT in Python 2.7

I need to perform http PUT operations from python Which libraries have been proven to support this? More specifically I need to perform PUT on keypairs, not file upload. I have been trying to work ...
3
votes
3answers
558 views

Handle pycurl hang on Twitter streaming api

I am using pycurl to connect to the twitter streaming API. This works well but sometimes after running for a few hours it will stop hang indefinitely, not throwing any exceptions. How can I ...
3
votes
4answers
501 views

Python code like curl

in curl i do this: curl -u email:password http://api.foursquare.com/v1/venue.json?vid=2393749 How i can do this same thing in python?
3
votes
3answers
2k views

Problem trying to install PyCurl on Mac Snow Leopard

My app needs to use PyCurl, so I tried to install it on my Mac but I found a lot of problems and errors. Requirement: First of all I have to say that the version of Python working on my Mac is 32 bit ...
3
votes
2answers
2k views

pycurl install :( already have min. libcurl version

I'm running python 2.6 on an Intel Mac OS X 10.5 I'm trying to install pycurl 7.16.2.1 (as recommended here http://curl.haxx.se/mail/curlpython-2009-03/0009.html), but for some reason, the ...
3
votes
5answers
901 views

Automate interaction with a webpage in python

I want to automate interaction with a webpage. I've been using pycurl up til now but eventually the webpage will use javascript so I'm looking for alternatives . A typical interaction is "open the ...
3
votes
3answers
1k views

pycurl: RETURNTRANSFER option doesn't exist

I'm using pycurl to access a JSON web API, but when I try to use the following: ocurl.setopt(pycurl.URL, gaurl) # host + endpoint ocurl.setopt(pycurl.RETURNTRANSFER, 1) ...
2
votes
1answer
407 views

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_install pycurl Searching for pycurl Reading ...
2
votes
2answers
334 views

Getting HTML with Pycurl

I've been trying to retrieve a page of HTML using pycurl, so I can then parse it for relevant information using str.split and some for loops. I know Pycurl retrieves the HTML, since it prints it to ...
2
votes
2answers
237 views

Multi-request pycurl running forever ( Infinite loop)

I want to perform Multi-request using Pycurl. Code is: m.add_handle(handle) requests.append((handle, response)) # Perform multi-request. SELECT_TIMEOUT = 1.0 num_handles = ...
2
votes
1answer
331 views

How to cancel a curl request from a WRITEFUNCTION?

I have a curl request in python which outputs a large amount of data to a writefunction (CURLOPT_WRITEFUNCTION). I want to be able to cancel the curl request from the writefunction if a certain ...
2
votes
1answer
140 views

How can I limit the number of curl calls to the write function?

I'm trying to limit the number of times this WRITEFUNCTION is called. Is there any way I can do that? defining the writefunction: conn.setopt(pycurl.WRITEFUNCTION, on_receive) Thanks for the help! ...
2
votes
1answer
869 views

Problems installing PyCurl on python2.7.0+

pycurl installs fine on python2.6 but i get the following error when I try to install in on 2.7 via easy_install on maverick $ sudo easy_install pycurl install_dir ...
2
votes
3answers
441 views

Problems POST-ing with pyCurl

i'm trying to POST a file to a webservice using CURL (that's what I need to use so I can't take twisted or something else). The problem is that when using pyCurl the webservice doesn't receive the ...
2
votes
2answers
319 views

Unable to close a stream opened with pycurl

I am working on a client for a web service using pycurl. The client opens a connection to a stream service and spawns it into a separate thread. Here's a stripped down version of how the connection ...
2
votes
1answer
198 views

What's the difference between pycurl and curl in python

Newbie question: Python 2.6, Ubuntu 10.04, I can import both pycurl and curl, the former having different names for functions (set_option vs. setopt). What's the difference between the two modules?
2
votes
1answer
206 views

PycURL RESUME_FROM

I can't seem to get the RESUME_FROM option to work. Here's some example code that I have been testing with: import os import pycurl import sys def progress(total, existing, upload_t, upload_d): ...
2
votes
2answers
553 views

How do I install pyCurl?

I tried everything! I cannot find a way to install pyCurl on my Windows 7 machine! I found these binaries link... BUT there are no binaries for 2.6. : ( Help would be great. : )
2
votes
4answers
1k views

Python: urllib2 or Pycurl?

I have extensive experience with PHP cURL but for the last few months I've been coding primarily in Java, utilizing the HttpClient library. My new project requires me to use Python, once again ...
2
votes
4answers
1k views

get many pages with pycurl?

I want to get many pages from a website, like curl "http://farmsubsidy.org/DE/browse?page=[0000-3603]" -o "de.#1" but get the pages' data in python, not disk files. Can someone please post pycurl ...
2
votes
3answers
3k views

Install pyCurl in ActivePython-2.6?

I have worked with pyCurl in the past and have it working with my system default python install. However, I have a project that requires python to be more portable and I am using ActivePython-2.6. I ...
2
votes
2answers
647 views

pycurl request exist in header function?

in C do return -1 when i want to cancel the download in either the header or the write function. In pycurl i get this error pycurl.error: invalid return value for write callback -1 17 I dont know ...
2
votes
2answers
2k views

Putting a pyCurl XML server response into a variable (Python)

I'm a Python novice, trying to use pyCurl. The project I am working on is creating a Python wrapper for the twitpic.com API (http://twitpic.com/api.do). For reference purposes, check out the code ...
1
vote
2answers
80 views

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 to post data to Google using basic http authentication. I've been testing this with curl like this: ...
1
vote
2answers
110 views

urllib2/pycurl in Django: Fetch XML, check HTTP status, check HTTPS connection

I need to make an API call (of sorts) in Django as a part of the custom authentication system we require. A username and password is sent to a specific URL over SSL (using GET for those parameters) ...
1
vote
0answers
60 views

How to trigger authenticated Jenkins job using standard Python library

We are currently triggering Jenkins jobs from a Python script with the help of PycURL. We would like, however, to get rid of the PycURL dependency, but have had little success so far. What makes our ...
1
vote
3answers
124 views

HEAD request vs. GET request

I always had the idea that doing a HEAD request instead of a GET request was faster (no matter the size of the resource) and therefore had it advantages in certain solutions. However, while making a ...
1
vote
1answer
159 views

Installing pycurl on OS X 10.7 Lion

I'm trying to install PyCurl in my local environment which has python 2.7 and gcc-4.2 on OS X 10.7 Lion. I've tried doing this based on this answer Error installing PyCurl: sudo env ARCHFLAGS="-arch ...
1
vote
1answer
69 views

How to abstract from pycurl the correct way

I would like to write a pseudo module that makes one do a GET request that keeps on going (pretty much like the one to consume the Twitter Streamming API), but making unnecessary to give in all the ...
1
vote
3answers
122 views

PyCurl Install not successful

While trying to install pycurl in my system (MAC OS X), I am getting the following error. No idea how to solve it. Please help !!! nsh$ sudo easy_install pycurl Searching for pycurl Reading ...
1
vote
1answer
176 views

How to grab streaming data from twitter connect with pycurl using nltk - regular expression

I am newbie in Python and given a task from my boss to do this : Grab streaming data from twitter connect with pycurl and output in JSON Parsing using NLTK and Regular Expression Save it to database ...
1
vote
1answer
62 views

how to import the new installed module whie an old same module exists

everybody! the built-in pycurl module doesn't define Curl object conn = pycurl.Curl() Error message: "pycurl" module has no attribute Curl so I download the latest pycurl and install ...
1
vote
1answer
141 views

PyCurl alternative, a pythonic wrapper for libcurl?

PycURL is a thin wrapper around the C libcurl API, I wonder if there's any more pythonic wrapper for libcurl which supports CurlMulti ?
1
vote
1answer
588 views

Tornado's AsyncHTTPClient no longer works after upgrade to 2.0 from 1.2

Decided I'd kick the tires of Tornado 2.0 tonight, but it appears to have done a number on ASyncHTTPClient for me. Nothing in the release notes for 2.0 indicates any real changes are necessary to how ...
1
vote
1answer
256 views

Image Download with PycURL gets me broken Images

I'm struggling with pycurl. These are my headers: headers.append('User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:5.0) Gecko/20100101 Firefox/5.0') headers.append('Accept: ...
1
vote
1answer
280 views

How to halt, kill, stop or close a PycURL request on a stream example given using Twitter Stream

Im currently cURLing the twitter API stream (http://stream.twitter.com/1/statuses/sample.json), so am constantly receiving data. I wish to stop cURLing the stream once i have retrieved X number of ...
1
vote
2answers
561 views

How to set GET parameters with PyCurl?

I'm trying to make a GET request for a REST api using PycURL. I am able to successful make a request if I do not pass any parameters. I am also able to make a POST request by doing the following: ...
1
vote
1answer
405 views

Using curl to update mysql when curl spits out json

Ok a rather strange question here (or maybe not) I am trying to pull tweets out of twitter using curl here is the command curl http://stream.twitter.com/1/statuses/filter.json?track=XXhashtagXX ...
1
vote
1answer
189 views

How can I view error messages with pycurl?

I have the following pycurl code: curl = pycurl.Curl() foo = StringIO() curl.setopt(pycurl.WRITEFUNCTION, foo.write) curl.setopt(pycurl.POST, 1) curl.setopt(pycurl.URL, finalURL) ...

1 2 3