Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
言程序plus
dr_py
提交
ac546804
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看板
提交
ac546804
编写于
11月 23, 2022
作者:
H
hjdhnx
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增加测试案例
上级
03985505
变更
6
展开全部
隐藏空白更改
内联
并排
Showing
6 changed file
with
42 addition
and
4 deletion
+42
-4
base/rules.db
base/rules.db
+0
-0
js/唐人街影视[飞].js
js/唐人街影视[飞].js
+1
-1
py/唐人街电影.html
py/唐人街电影.html
+0
-0
py/日常.html
py/日常.html
+0
-0
py/测试pdf.py
py/测试pdf.py
+39
-2
utils/htmlParser.py
utils/htmlParser.py
+2
-1
未找到文件。
base/rules.db
浏览文件 @
ac546804
无法预览此类型文件
js/唐人街影视.js
→
js/唐人街影视
[飞]
.js
浏览文件 @
ac546804
...
...
@@ -19,6 +19,6 @@ var rule={
推荐
:
'
ul.vodlist.vodlist_wi;li;a&&title;a&&data-original;.pic_text.text_right&&Text;a&&href
'
,
double
:
true
,
// 推荐内容是否双层定位
一级
:
'
li.vodlist_item;a&&title;a&&data-original;.pic_text.text_right&&Text;a&&href
'
,
二级
:{
"
title
"
:
"
h2&&Text;.content_detail.content_min.fl .data_style&&Text
"
,
"
img
"
:
"
.content_thumb .vodlist_thumb&&data-original
"
,
"
desc
"
:
"
.content_detail.content_min.fl li:eq(0)&&Text;.content_detail.content_min.fl li:eq(2)&&Text;.content_detail.content_min.fl li:eq(3)&&Text
"
,
"
content
"
:
"
.content&&Text
"
,
"
tabs
"
:
"
.play_source_tab:eq(0) a
"
,
"
lists
"
:
"
.content_playlist:eq(#id) li
"
},
二级
:{
"
title
"
:
"
h2&&Text;.content_detail.content_min.fl .data_style&&Text
"
,
"
img
"
:
"
.content_thumb .vodlist_thumb&&data-original
"
,
"
desc
"
:
"
.content_detail.content_min.fl li:eq(0)&&Text;.content_detail.content_min.fl li:eq(2)&&Text;.content_detail.content_min.fl li:eq(3)&&Text
"
,
"
content
"
:
"
.content&&Text
"
,
"
tabs
"
:
"
.play_source_tab:eq(0) a
"
,
"
lists
"
:
"
#playlistbox&&
.content_playlist:eq(#id) li
"
},
搜索
:
'
body .searchlist_item;a&&title;.vodlist_thumb&&data-original;.pic_text.text_right&&Text;a&&href;.vodlist_sub&&Text
'
,
}
py/唐人街电影.html
0 → 100644
浏览文件 @
ac546804
此差异已折叠。
点击以展开。
py/日常.html
0 → 100644
浏览文件 @
ac546804
此差异已折叠。
点击以展开。
py/测试pdf.py
浏览文件 @
ac546804
...
...
@@ -7,6 +7,7 @@
from
utils.ua
import
MOBILE_UA
from
utils.htmlParser
import
jsoup
import
requests
from
pyquery
import
PyQuery
as
pq
def
main
():
...
...
@@ -94,8 +95,44 @@ def main3():
a
=
jsp
.
pdfa
(
html
,
'.yunplay&&.downtitle&&ul li'
)
print
(
a
)
def
main4
():
a
=
'唐人街电影.html'
a
=
'日常.html'
with
open
(
a
,
encoding
=
'utf-8'
)
as
f
:
html
=
f
.
read
()
# print(html)
二级
=
{
"title"
:
"h2&&Text;.content_detail.content_min.fl .data_style&&Text"
,
"img"
:
".content_thumb .vodlist_thumb&&data-original"
,
"desc"
:
".content_detail.content_min.fl li:eq(0)&&Text;.content_detail.content_min.fl li:eq(2)&&Text;.content_detail.content_min.fl li:eq(3)&&Text"
,
"content"
:
".content&&Text"
,
"tabs"
:
".play_source_tab:eq(0) a"
,
"lists"
:
".content_playlist:eq(#id) li"
}
print
(
二级
)
jsp
=
jsoup
(
'https://www.tangrenjie.tv/vod/detail/id/218945.html'
)
# print(jsp.pdfa(html, 'h2'))
# print('h2&&Text',jsp.pdfh(html, 'h2&&Text'))
for
i
in
二级
[
'title'
].
split
(
';'
):
print
(
i
)
print
(
jsp
.
pdfh
(
html
,
i
))
for
i
in
二级
[
'desc'
].
split
(
';'
):
print
(
i
)
print
(
jsp
.
pdfh
(
html
,
i
))
for
i
in
二级
[
'content'
].
split
(
';'
):
print
(
i
)
print
(
jsp
.
pdfh
(
html
,
i
))
for
i
in
二级
[
'img'
].
split
(
';'
):
print
(
i
)
print
(
jsp
.
pd
(
html
,
i
))
print
(
jsp
.
pdfa
(
html
,
'.play_source_tab:eq(0) a'
))
print
(
jsp
.
pdfa
(
html
,
'#playlistbox&&.content_playlist:eq(1) li'
))
# doc = pq(html)
# print(doc)
# print('h2',doc.find('h2'))
# print('h2',doc('.title'))
# print('h2:',doc('h2'))
if
__name__
==
'__main__'
:
# main()
# main1()
# main2()
main3
()
\ No newline at end of file
# main3()
main4
()
\ No newline at end of file
utils/htmlParser.py
浏览文件 @
ac546804
...
...
@@ -108,11 +108,12 @@ class jsoup:
:return:
"""
nparse_rule
,
nparse_index
,
excludes
=
self
.
getParseInfo
(
nparse
)
if
not
ret
:
ret
=
doc
(
nparse_rule
)
else
:
ret
=
ret
(
nparse_rule
)
# print(f'nparse_rule:{nparse_rule},nparse_index:{nparse_index},excludes:{excludes},ret:{ret}')
if
self
.
contains
(
nparse
,
':eq'
):
ret
=
ret
.
eq
(
nparse_index
)
# if nparse_index > 4:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录