requests使用IP代理时测试代理是否有效

以下代码能测试该IP代理是否有效,将代理的IP和代理IP的端口号填入即可

# -*- coding: utf-8 -*-
import telnetlib

print('------------------------connect---------------------------')
# 连接Telnet服务器
try:
    tn = telnetlib.Telnet('61.224.163.185',port='8080',timeout=20)
except:
    print('该代理IP  无效')
else:
    print('该代理IP  有效')

print('-------------------------end----------------------------')

 

 

你可能感兴趣的:(爬虫,python)