Python study notes: Requests library installation, downloading files through url

 1. Download and install the requests library

Download it from pipy or github, usually a zip, unzip it and enter cmd in the path, and run the following code

Python setup.py install

 After the installation is complete, enter python and then import requests to get the judgment time to complete the installation.

 2. Download files through url

Using the urllib module

import urllib.request

def is_file(url):
    if url.endswith('.mp3', -4):
        return True
    else:
        temp = url[-4:]
        return False


def download_file(url):
    if is_file(url):
        print(urllib.request.urlretrieve(url, 'd:\\01.mp3'))
    else:
        print("url非mp3文件")


if __name__ == '__main__':
    # temp_url = "https://tyst.migu.cn/public/product5th/product34/2019/07/2519/2019%E5%B9%B404%E6%9C%8818%E6%97%A521%E7%82%B907%E5%88%86%E7%B4%A7%E6%80%A5%E5%86%85%E5%AE%B9%E5%87%86%E5%85%A5%E6%AD%A3%E4%B8%9C29%E9%A6%96176766/%E6%A0%87%E6%B8%85%E9%AB%98%E6%B8%85/MP3_320_16_Stero/6005661VFUY.mp3"
    # download_file(temp_url)
    pip3 install requests

Guess you like

Origin blog.csdn.net/YGZ11113/article/details/132570835