Lispython / human_curl

Simple Human wrapper for cURL library
http://h.wrttn.me/human_curl
Other
205 stars 43 forks source link

requests compatibility issues #16

Open pythonmobile opened 12 years ago

pythonmobile commented 12 years ago

Seems like most of the API of requests does not work in human_curl

For instance:

import human_curl as requests r = requests.get("https://..." , verify=False) -- rename validate_cert to verify? requests.get("https://..." , verify=False).text -- rename content to text?

Lispython commented 12 years ago

I don't watch requests development some of requests features appear early in human_curl. SSL CERT VERIFICATION too. I will think about it.

pythonmobile commented 12 years ago

Another issue is that requests accepts unicode urls. We should try to support that in human_curl as well?

Lispython commented 11 years ago

After some time, I change my opinion and think that human_curl need more compitibility with requests.

honzajavorek commented 10 years ago

+1

stas commented 9 years ago

After a couple of tests the most obvious compatibility issues are

Honestly, I would start a discussion with the requests community in order to provide support for pycurl. This way we can have clear API specs and focus on adapters integration. Not to mention the benefits it would have for requests package (improved speed and socks proxy support are worth mentioning).

/cc @kennethreitz