I just want to use the kivy urlrequest behind a proxy, but it seems that doesn't care of my environment variables. Is there any way to use it?
Thank you
I just want to use the kivy urlrequest behind a proxy, but it seems that doesn't care of my environment variables. Is there any way to use it?
Thank you
Unfortunately, UrlRequest
uses httplib interally which does not directly support proxying. You can use urllib which transparently supports proxies, or use httplib and manually proxy the request yourself.
Please submit a bug report for this at https://github.com/kivy/kivy/issues.