我正在做一个领域前沿项目。基本上,我试图使用subprocess.call()
函数来解释以下命令:
wget -O - https://fronteddomain.example --header 'Host: targetdomain.example'
有了正确的域,我知道如何进行域前沿,这不是问题。只需一些使用wget的python subprocess.call()
函数进行编写的帮助。
答案 0 :(得分:1)
我用curl弄清楚了:
call(["curl", "-s", "-H" "Host: targetdomain.example", "-H", "Connection: close", "frontdomain.example"])