随笔分类 - Python module
摘要:  
阅读全文
摘要:需要通过pip install requests进行安装 import requests url = 'http://192.168.1.203/dev/live_ver' r = requests.get(url) print('1', r) print('2', r.text) [yy@192
阅读全文
摘要:需要通过pip install wget进行安装 import wget url = 'http://192.168.1.203/dev/live_ver' dest_dir = '/home/yy/test' wget.download(url, dest_dir)
阅读全文