windows - what's wrong with PyCurl on Windows8.1 -
before case used own library extended on pycurl many time, , worked fine, on windows , *nix systems on both. have windows8.1 now, , python3.4, , pycurl downloaded https://pypi.python.org/pypi/pycurl/7.43.0, , typing simple strings in repl python:
import pycurl c = pycurl.curl() c.setopt(c.url, 'http://example.com') c.perform() print(c.getinfo(c.total_time))
call of perform() slow down ~14 seconds. , side of others libraries, such urllib or requests. maybe not alone problem
Comments
Post a Comment