Are Python.requests safe?
问题 I'm about to use Python.requests to get data from my own online api to my local pc. My api requires authentication which for now is done trough simply posting user/pass: params = {'user': 'username', 'pass':'password'} requests.post(url, params=params) Are this requests safe or is it going to allow a middle-man to capture that user/pass? P.S My api is using a letsencrypt ssl certificate. Python version 3.7.0 回答1: this has nothing to do with the python-requests package, but with the HTTP (and