Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
言程序plus
dr_py
提交
652790f9
dr_py
项目概览
言程序plus
/
dr_py
与 Fork 源项目一致
从无法访问的项目Fork
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
dr_py
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
652790f9
编写于
11月 30, 2022
作者:
H
hjdhnx
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
升级py
上级
e1b96658
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
14 addition
and
21 deletion
+14
-21
txt/py/py_yunso.py
txt/py/py_yunso.py
+14
-21
未找到文件。
txt/py/py_yunso.py
浏览文件 @
652790f9
...
@@ -26,25 +26,18 @@ class Spider(Spider):
...
@@ -26,25 +26,18 @@ class Spider(Spider):
def
homeVideoContent
(
self
):
def
homeVideoContent
(
self
):
result
=
{}
result
=
{}
return
result
return
result
def
categoryContent
(
self
,
tid
,
pg
,
filter
,
extend
):
def
categoryContent
(
self
,
tid
,
pg
,
filter
,
extend
):
result
=
{}
result
=
{}
return
result
return
result
header
=
{
header
=
{
"User-Agent"
:
"Mozilla/5.0 (Linux; Android 12; V2049A Build/SP1A.210812.003; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/103.0.5060.129 Mobile Safari/537.36"
,
"User-Agent"
:
"Mozilla/5.0 (Linux; Android 12; V2049A Build/SP1A.210812.003; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/103.0.5060.129 Mobile Safari/537.36"
,
"origin"
:
"https://www.upyunso.com/"
"origin"
:
"https://www.upyunso.com/"
}
}
def
detailContent
(
self
,
array
):
def
detailContent
(
self
,
array
):
id
=
array
[
0
]
return
self
.
ali
.
detailContent
(
array
)
ysurl
=
'https://api.upyunso.com/{0}'
.
format
(
id
.
replace
(
'.html'
,
''
))
header
=
{
"User-Agent"
:
"Mozilla/5.0 (Linux; Android 12; V2049A Build/SP1A.210812.003; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/103.0.5060.129 Mobile Safari/537.36"
,
"referer"
:
"https://www.upyunso.com/{0}"
.
format
(
id
),
"origin"
:
"https://www.upyunso.com/"
}
urlrsp
=
requests
.
get
(
url
=
ysurl
,
headers
=
header
).
text
.
encode
(
'ISO-8859-1'
).
decode
(
'UTF-8'
)
url
=
[
"{0}"
.
format
(
json
.
loads
(
base64
.
b64decode
(
urlrsp
))[
'result'
][
'res_url'
])]
print
(
url
)
return
self
.
ali
.
detailContent
(
url
)
def
searchContent
(
self
,
key
,
quick
):
def
searchContent
(
self
,
key
,
quick
):
url
=
"https://api.upyunso.com/search?keyword={0}&page=1&s_type=2"
.
format
(
key
)
url
=
"https://api.upyunso.com/search?keyword={0}&page=1&s_type=2"
.
format
(
key
)
...
@@ -52,16 +45,16 @@ class Spider(Spider):
...
@@ -52,16 +45,16 @@ class Spider(Spider):
vodList
=
json
.
loads
(
base64
.
b64decode
(
rsp
.
text
))[
'result'
][
'items'
]
vodList
=
json
.
loads
(
base64
.
b64decode
(
rsp
.
text
))[
'result'
][
'items'
]
videos
=
[]
videos
=
[]
for
vod
in
vodList
:
for
vod
in
vodList
:
conList
=
vod
[
'content
'
]
vid
=
vod
[
'page_url
'
]
for
con
in
conList
:
name
=
vod
[
'title'
]
if
'download.html?url'
in
con
[
'size'
]
:
if
'aliyundrive.com'
in
vid
:
vid
=
con
[
'size'
]
videos
.
append
({
videos
.
append
({
"vod_id"
:
vid
,
"vod_id"
:
vid
,
"vod_name"
:
name
,
"vod_name"
:
con
[
'title'
]
,
"vod_pic"
:
"https://inews.gtimg.com/newsapp_bt/0/13263837859/1000"
,
"vod_pic"
:
"https://inews.gtimg.com/newsapp_bt/0/13263837859/1000"
,
"vod_remarks"
:
vod
[
'insert_time'
]
"vod_remarks"
:
vod
[
'insert_time'
]
})
})
result
=
{
result
=
{
'list'
:
videos
'list'
:
videos
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录