Closed mukthy closed 2 years ago
Now it should detect this below curl:
curl 'https://pypi.python.org/pypi/uncurl' -U user: -x proxy.python.org:8080
and convert it to a python code:
requests.get("https://pypi.python.org/pypi/uncurl", headers={}, cookies={}, auth=(), proxies={'http': 'http://user:@proxy.python.org:8080/', 'https': 'http://user:@proxy.python.org:8080/'}, )
Looks great; thanks!
thanks for approving 👍
Now it should detect this below curl:
curl 'https://pypi.python.org/pypi/uncurl' -U user: -x proxy.python.org:8080
and convert it to a python code:
requests.get("https://pypi.python.org/pypi/uncurl", headers={}, cookies={}, auth=(), proxies={'http': 'http://user:@proxy.python.org:8080/', 'https': 'http://user:@proxy.python.org:8080/'}, )