Search code examples
pythonwindowsgoogle-app-enginepycurl

pycurl with Google app engine


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 ?


Solution

  • 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.