wget与subprocess.call()

时间:2018-11-20 20:23:48

标签: python subprocess wget

我正在做一个领域前沿项目。基本上,我试图使用subprocess.call()函数来解释以下命令: wget -O - https://fronteddomain.example --header 'Host: targetdomain.example'

有了正确的域,我知道如何进行域前沿,这不是问题。只需一些使用wget的python subprocess.call()函数进行编写的帮助。

1 个答案:

答案 0 :(得分:1)

我用curl弄清楚了:

call(["curl", "-s", "-H" "Host: targetdomain.example", "-H", "Connection: close", "frontdomain.example"])