1

Possible Duplicate:
curl on app engine

Does GAE support pycurl ?

I have downloaded the pycurl setup (pycurl-ssl-7.18.2.win32-py2.5.exe) from this link :http://pycurl.sourceforge.net/download/ . And setup was installed in C:\Python25\Lib\site-packages\curl

Now how can in integrate pycurl with Google app engine project ?

Community
  • 1
  • 1
Nijin Narayanan
  • 2,269
  • 2
  • 27
  • 46

1 Answers1

3

http://pycurl.sourceforge.net/:

PycURL is a Python interface to libcurl [...]

You can't use PycURL on GAE since it requires this C library.

As the commenters said, use the native URL Fetch API for similar functionality.

cope360
  • 6,195
  • 2
  • 20
  • 33