CiscoPSIRT / openVulnAPI

Documentation and Tools for Cisco's PSIRT openVuln API
https://developer.cisco.com/psirt/
MIT License
102 stars 52 forks source link

https_proxy #66

Closed cc3283 closed 5 years ago

cc3283 commented 5 years ago

Looking for a way to use an https proxy address in query_client request, python3

cc3283 commented 5 years ago

Hello, I was able to solve this by exporting env var: http_proxy = 'http://proxy:8080' os.environ['http_proxy'] = http_proxy os.environ['https_proxy'] = http_proxy

I was looking for a way to pass the proxy to query_client requests. I an in site would be appreciated.

Thanks, Cory