Skip to content

Commit 6bd01a6

Browse files
author
Matt Bertrand
committed
Dont verify SSL for waterqualityportal.us requests'
1 parent f5ce843 commit 6bd01a6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

dataqs/wqp/wqp.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,8 @@ def download(self, indicator):
219219
end=today.strftime('%m-%d-%Y'),
220220
indicator=indicator)
221221

222-
r = requests.get(indicator_url, timeout=120, stream=True)
222+
r = requests.get(indicator_url,
223+
timeout=120, stream=True, verify=False)
223224
r.raise_for_status()
224225
outname = "{}{}_{}.csv".format(
225226
self.prefix, self.safe_name(indicator), query_type)

0 commit comments

Comments
 (0)