jamesturk / scrapelib

⛏ a library for scraping unreliable pages
https://jamesturk.github.io/scrapelib/
BSD 2-Clause "Simplified" License
208 stars 40 forks source link

Mainly set verify default args to None #255

Closed fgregg closed 3 months ago

fgregg commented 3 months ago

This will allow the session level setting to control.

There's a few places where verify is set to True, and this prevents session level settings attribute to control verification behavior.

This is unlikely to cause any breaking behavior because if verify is set to None on the request method, and verify is not set to False on the session, then the behavior is to verify SSL.

jamesturk commented 3 months ago

LGTM 👍