jhao104 / jhao104/proxy_pool

https代理使用?

Open
#762 1 comment 0 reactions 0 assignees View on GitHub
Dominant language
Python
Stars
23.7k
Forks
5.4k
PR merge metrics
No merged PRs in 30d

Description

请问https代理是这么使用吗?
```
import requests

def get_proxy():
return requests.get("http://127.0.0.1:5010/get/?type=https").json() # 添加参数?type=https

def delete_proxy(proxy):
requests.get("http://127.0.0.1:5010/delete/?proxy={}".format(proxy))
```

然后下面requests使用:
```
html = requests.get('http://www.example.com', proxies={"http": "http://{}".format(proxy)})
```
应该修改为?
```
html = requests.get('http://www.example.com', proxies={"https": "http://{}".format(proxy)})
```

还是两个http都要修改为https?
```
html = requests.get('http://www.example.com', proxies={"https": "https://{}".format(proxy)})
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.