如何在Python 2.7上使用代理扫描多个URL?

时间:2019-01-30 07:57:03

标签: python-2.7

如何使用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)

0 个答案:

没有答案