File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
# 被依赖方 <--- 使用方
3
3
# config <--- entity <--- toolkit <--- client <--- option <--- downloader
4
4
5
- __version__ = '2.5.38 '
5
+ __version__ = '2.5.39 '
6
6
7
7
from .api import *
8
8
from .jm_plugin import *
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ class JmcomicText:
24
24
25
25
pattern_html_album_album_id = compile (r'<span class="number">.*?:JM(\d+)</span>' )
26
26
pattern_html_album_scramble_id = compile (r'var scramble_id = (\d+);' )
27
- pattern_html_album_name = compile (r'<h2 class="book-name" id="book-name"[^>]*?>([\s\S]*?)</h2> ' )
28
- pattern_html_album_episode_list = compile (r'data-album="(\d+)"[^>]*>\s*?<li.*?>\s *?第(\d+)[话話]([\s\S]*?)<[\s\S]*?>' )
27
+ pattern_html_album_name = compile (r'id="book-name"[^>]*?>([\s\S]*?)<' )
28
+ pattern_html_album_episode_list = compile (r'data-album="(\d+)"[^>]*>[\s\S] *?第(\d+)[话話]([\s\S]*?)<[\s\S]*?>' )
29
29
pattern_html_album_page_count = compile (r'<span class="pagecount">.*?:(\d+)</span>' )
30
30
pattern_html_album_pub_date = compile (r'>上架日期 : (.*?)</span>' )
31
31
pattern_html_album_update_date = compile (r'>更新日期 : (.*?)</span>' )
@@ -47,7 +47,7 @@ class JmcomicText:
47
47
]
48
48
# 作者
49
49
pattern_html_album_authors = [
50
- compile (r'作者: * <span itemprop="author" data-type="author">([\s\S]*?)</span>' ),
50
+ compile (r'<span itemprop="author" data-type="author">([\s\S]*?)</span>' ),
51
51
pattern_html_tag_a ,
52
52
]
53
53
# 點擊喜歡
You can’t perform that action at this time.
0 commit comments