Skip to content

Commit

Permalink
Merge pull request #19 from wikiZ/patch-1
Browse files Browse the repository at this point in the history
Update zoomeye.py
  • Loading branch information
0x7Fancy committed Oct 22, 2021
2 parents 6af982f + bc1247d commit d98a7cb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions kunyu/core/zoomeye.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,16 @@ def __request(self, login_url, data=None, headers=None):
login_url,
data=data,
headers=headers,
timeout=30
timeout=30,
verify=False
)
else:
resp = requests.post(
login_url,
data=data,
headers=headers,
timeout=30
timeout=30,
verify=False
)
self.check_status(resp)
self.check_error(resp.json())
Expand Down

0 comments on commit d98a7cb

Please sign in to comment.