吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 767|回复: 7
收起左侧

[Python 原创] python获取b站视频选集目录名

[复制链接]
hsx778899 发表于 2024-9-14 09:34
[Python] 纯文本查看 复制代码
import requests
import re
import json

def fin_data(_url):
    headers = {
        "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36"
    }
    
    try:
        get_url = requests.get(url=_url, headers=headers)
        get_url.raise_for_status()
        
        return get_url.text
    
    except requests.RequestException as e:
        print(f"请求失败: {e}")
        return None

def extract_and_process_content(content):
    # 使用正则表达式提取部分内容
    pattern = re.compile(r'"part":"([^"]+)"')
    matches = pattern.findall(content)

    def decode_unicode(text):
        return json.loads('"' + text + '"')

    # 打印提取的并转换后的内容
    for match in matches:
        decoded_content = decode_unicode(match)
        print(decoded_content)

if __name__ == '__main__':
    url = 'https://www.bilibili.com/video/BV1uw411j7wh'  # 替换为实际的网页链接
    webpage_content = fin_data(url)
    
    if webpage_content:
        extract_and_process_content(webpage_content)


优效截图20240914093337.png

免费评分

参与人数 1吾爱币 +7 热心值 +1 收起 理由
苏紫方璇 + 7 + 1 欢迎分析讨论交流,吾爱破解论坛有你更精彩!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

yvan097 发表于 2024-9-14 10:08
哇塞,谢谢分享!学习到了!
Myles 发表于 2024-9-14 10:40
idonotknow 发表于 2024-9-14 11:19
Conan520 发表于 2024-9-14 11:31
刚好在学习python,感谢
PPYLL 发表于 2024-9-14 12:17
刚好需要,感谢楼主
Tinghe218 发表于 2024-9-14 14:55
楼主大佬
laotzudao0 发表于 2024-9-17 10:12
这代码学到了
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-24 11:25

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

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