下载jar.py 371 B

12345678910111213141516
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. # File : 下载jar.py
  4. # Author: DaShenHan&道长-----先苦后甜,任凭晚风拂柳颜------
  5. # Date : 2022/10/14
  6. import requests
  7. headers = {
  8. 'user-agent':'okhttp/3.15'
  9. }
  10. r = requests.get('http://刚刚.live/jar2/0906.jar',headers=headers)
  11. print(r.content)
  12. with open('0906.jar','wb+') as f:
  13. f.write(r.content)