import subprocess
import base64
thunder_path = 'E:\Thunder\Program\Thunder.exe'
def Url2Thunder(url):
    url = 'AA' + url + 'ZZ'
    url = base64.b64encode(url.encode('ascii'))
    url = b'thunder://' + url
    thunder_url = url.decode()
    return thunder_url


def download_with_thunder(file_url):
    thunder_url = Url2Thunder(file_url)
    subprocess.call([thunder_path, thunder_url])

  

相关文章:

  • 2022-01-09
  • 2021-06-03
  • 2021-04-25
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-17
  • 2022-12-23
猜你喜欢
  • 2021-12-22
  • 2022-12-23
  • 2021-04-12
  • 2021-12-07
  • 2022-12-23
  • 2022-12-23
  • 2021-12-26
相关资源
相似解决方案