postmanlabs / postman-code-generators

Common repository for all code generators shipped with Postman
Apache License 2.0
996 stars 351 forks source link

fix python.http-client generate code snippet using http #747

Closed yizhao1998 closed 2 months ago

yizhao1998 commented 6 months ago

Problem

Associated Issue For url using http protocol, python.http-client still generates conn = http.client.HTTPSConnection. Python would throw SSL error when running the script.

Fix

Generate the code snippet based on the received url protocol.

Test

Added unit test case.