鱼C论坛

 找回密码
 立即注册
查看: 1904|回复: 0

[作品展示] 用Python制作的铃声下载小工具

[复制链接]
发表于 2020-9-10 22:47:48 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
直接上代码....
import requests
import os
from bs4 import BeautifulSoup
import time


def get_url(url):
    headers = {
        'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36'
    }
    res = requests.get(url, headers=headers)
    soup = BeautifulSoup(res.text, 'html.parser')
    items = soup.select('div.b-box')
    urls = ['https:' + item['src'] for item in items[0].select('source')]  # 音乐地址
    names = [state for n in items[0].select('dt.info') for state in n.find('a')]  # 音乐名称
    path = '搞怪铃声'
    if not os.path.exists(path):  # 设置存放路径
        os.mkdir(path)
    for name, link in zip(names, urls):
        with open(r'{}\{}.mp3'.format(path, name), 'wb') as file:  # 写入数据
            res = requests.get(link)
            print(name, '下载成功')
            file.write(res.content)


link = 'https://www.tukuppt.com/yinxiao/zonghe_0_0_0_0_0_0_{}.html'  # 目标地址
page = int(input('请输入下载的页数:'))
urls = [link.format(i) for i in range(1, page + 1)]

for url in urls:
    get_url(url)
    time.sleep(1)  # 休息1秒,以免被封
music.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-18 16:02

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表