随笔分类 -  Requests

摘要:dic = dict() def add_two_dimensional_dictionary(old_dict,key_a,key_b,value): if key_a in old_dict: old_dict[key_a].update({key_b:value}) else: old_dic 阅读全文
posted @ 2022-06-22 23:19 xuecl 阅读(50) 评论(0) 推荐(0)
摘要:import time import requests # 返回视频的真实下载地址 def get_real_video_url(video_id): # 视频地址解析接口 url = 'https://www.pearvideo.com/videoStatus.jsp?contId={}'.for 阅读全文
posted @ 2021-12-04 11:38 xuecl 阅读(69) 评论(0) 推荐(0)