如何使用Python使用代理扫描多个URL并打印结果?
使用此脚本只能扫描1个URL。我的意思是我可以添加如下代码:
a = s.get('url')
b = s.get('url')
但是你们有简单的方法吗?
import requests
proxies = {
'http': 'http://user:pass@118.97.87.186:8080',
'https': 'http://user:pass@118.97.87.186:8080',
}
s = requests.Session()
s.proxies = proxies
a = s.get('url')
print(a.text)