gpt4 book ai didi

testing - 测试IP代理的方法

转载 作者:行者123 更新时间:2023-11-28 21:23:55 25 4
gpt4 key购买 nike

我想测试代理 [网关] 服务。检查代理 IP 速度、质量 [未被 Google、Facebook 等数据聚合商和提供商禁止] 和其他参数的最简单方法可能是什么?

  • 对脚本有任何提示吗?
  • 任何代理测试基准?

目前我所知道的:

import urllib.request
import time
opener = urllib.request.build_opener(
urllib.request.ProxyHandler(
{'http': 'http://127.0.0.1:9999'}))
start = time.time()
print(opener.open('http://example.com').read())
print ('total time: {0}'.format(time.time()-start))

最佳答案

代理速度测试

import requests, time
proxies = {
'http': 'http://50.31.10.131:8800',
'https': 'http://50.31.10.131:8800',
}
start = time.time()
res = requests.get('http://ipinfo.io', proxies=proxies)
print 'total time with proxies: {0} sec.'.format(round(time.time()-start, 2))

关于testing - 测试IP代理的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45714078/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com