Support for custom CA certs
Closed this issue · 2 comments
tabrezm commented
I'm using primp with a proxy and need to be able to provide my own CA certs. Currently using verify=False
as a workaround. Can you consider this feature request? Thanks
tabrezm commented
deedy5 commented
Implemented in v0.6.0
import certifi
import primp
resp = primp.Client(impersonate="safari_17.5", ca_cert_file=certifi.where()).get(
"https://foxnews.com"
)
print(resp.text_rich)