MonkeyPatchWarning: Monkey-patching ssl after ssl has already been imported may lead to errors
原因:
The problem is that you're importing requests *before* you monkey patch.You must monkey patch before importing anything else.
意思就是你需要在導(dǎo)入request
庫(kù)之前monkey.patch_all()