import requestsfrom bs4 import BeautifulSoup'''URL of the archive web-page which provides link toall video lectures. It would have been tiring todownload each video manually.In this example, we first crawl the webpage to extractall the links and then download videos.'''# specify the URL of the archive herearchive_url = "http://www-personal.umich.edu/~csev/books/py4inf/media/"def get_video_links():# create response objectr = requests.get(archive_url)# create beautiful-soup objectsoup = BeautifulSoup(r.content, 'html5lib')# find all links on web-pagelinks = soup.findAll('a')# filter the link sending with .mp4video_links = [archive_url + link['href'] for link in links if link['href'].endswith('mp4')]return video_linksdef download_video_series(video_links):for link in video_links:'''iterate through all links in video_linksand download them one by one'''# obtain filename by splitting url and getting# last stringfile_name = link.split('/')[-1]print("Downloading the file:%s" % file_name)# create response objectr = requests.get(link, stream=True)# download startedwith open(file_name, 'wb') as f:for chunk in r.iter_content(chunk_size=1024 * 1024):if chunk:f.write(chunk)print("%s downloaded!\n" % file_name)print("All videos are downloaded!")returnif __name__ == "__main__":# getting all video linksvideo_links = get_video_links()# download all videosdownload_video_series(video_links)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。