pycurl with Google app engine [duplicate]
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 ?
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.
精彩评论