python 验证代理是否有效
发布网友
发布时间:2022-04-23 18:48
我来回答
共3个回答
热心网友
时间:2022-04-14 09:42
首先要从项目中遇到的一个问题说起。编写一个python文件test.py,文件test.py内容如下:
#! /usr/bin/python
....
如果在命令行方式执行test.py的方式是:
test.py -in inputfile -out outputfile;或python test.py -in inputfile -out outputfile;
但是因为需要,用exec函数(这里使用execl)去调用这个python文件。在项目中是这样写的:
execl(”test.py”,”-in”,”inputfile”,”-out”,”outputfile”,(char*)0);
但执行结果并不是预想的test.py执行,而是启动了python交互程序,不知道是什么原因。因为一直以为如果写一个C程序,比如main。那么在命令行输入:main arg1 arg2执行的效果和execl(”main”,”arg1”,”arg2”,(char*)0)的效果应该是一样的。
热心网友
时间:2022-04-14 11:00
urllib2里有个proxy_handle
热心网友
时间:2022-04-14 12:34
代理之后访问个自己的url,看看ip是多少就知道啦