拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...
subprocess.check_output(["curl -s cip.cc"],shell=True)
man curl
-s, --silent Silent or quiet mode. Don't show progress meter or error messages. Makes Curl mute. It will still output the data you ask for, potentially even to the terminal/stdout unless you redirect it.
试一试下面代码:
不知道你什么平台 你用 curl -h 看看参数设置
curl -h
比如标准库urllib使用有什么困难吗,一定需要系统调用? 通过subprocess调用curl,你还得手动处理timeout、stderr、stdout、进程return code各种异常……
urllib
man curl
试一试下面代码:
不知道你什么平台 你用
curl -h
看看参数设置比如标准库
urllib
使用有什么困难吗,一定需要系统调用? 通过subprocess调用curl,你还得手动处理timeout、stderr、stdout、进程return code各种异常……