[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[问题求助] 用python改写一个power shell命令

命令如下
  1. Invoke-WebRequest -Uri "http://www.musictool.top/" `
  2. -Method "POST" `
  3. -Headers @{
  4. "Accept"="application/json, text/javascript, */*; q=0.01"
  5.   "X-Requested-With"="XMLHttpRequest"
  6.   "User-Agent"="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37"
  7.   "Origin"="http://www.musictool.top"
  8.   "Referer"="http://www.musictool.top/?name=the%20right%20path&type=qq"
  9.   "Accept-Encoding"="gzip, deflate"
  10.   "Accept-Language"="zh-CN,zh;q=0.9,en;q=0.8,en-US;q=0.7,en-GB;q=0.6"
  11. } `
  12. -ContentType "application/x-www-form-urlencoded; charset=UTF-8" `
  13. -Body "input=the+right+path&filter=name&type=qq&page=1"
复制代码
在powershell里面可以运行,如何把他写成python的代码?
主要是ContentType不懂处理

我自己搞定了

TOP

ContentType  是响应体中的一条字段,不用发送给服务器。
#&cls&@powershell "Invoke-Expression ([Io.File]::ReadAllText('%~0',[Text.Encoding]::UTF8))" &pause&exit

TOP

回复 3# ivor


    但是 "application/x-www-form-urlencoded; charset=UTF-8" 要发送

TOP

返回列表