jmcomic 2.6.11__tar.gz → 2.6.12__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. {jmcomic-2.6.11/src/jmcomic.egg-info → jmcomic-2.6.12}/PKG-INFO +4 -1
  2. {jmcomic-2.6.11 → jmcomic-2.6.12}/README.md +3 -0
  3. {jmcomic-2.6.11 → jmcomic-2.6.12}/src/jmcomic/__init__.py +1 -1
  4. {jmcomic-2.6.11 → jmcomic-2.6.12}/src/jmcomic/jm_config.py +5 -2
  5. {jmcomic-2.6.11 → jmcomic-2.6.12/src/jmcomic.egg-info}/PKG-INFO +4 -1
  6. {jmcomic-2.6.11 → jmcomic-2.6.12}/LICENSE +0 -0
  7. {jmcomic-2.6.11 → jmcomic-2.6.12}/pyproject.toml +0 -0
  8. {jmcomic-2.6.11 → jmcomic-2.6.12}/setup.cfg +0 -0
  9. {jmcomic-2.6.11 → jmcomic-2.6.12}/setup.py +0 -0
  10. {jmcomic-2.6.11 → jmcomic-2.6.12}/src/jmcomic/api.py +0 -0
  11. {jmcomic-2.6.11 → jmcomic-2.6.12}/src/jmcomic/cl.py +0 -0
  12. {jmcomic-2.6.11 → jmcomic-2.6.12}/src/jmcomic/jm_client_impl.py +0 -0
  13. {jmcomic-2.6.11 → jmcomic-2.6.12}/src/jmcomic/jm_client_interface.py +0 -0
  14. {jmcomic-2.6.11 → jmcomic-2.6.12}/src/jmcomic/jm_downloader.py +0 -0
  15. {jmcomic-2.6.11 → jmcomic-2.6.12}/src/jmcomic/jm_entity.py +0 -0
  16. {jmcomic-2.6.11 → jmcomic-2.6.12}/src/jmcomic/jm_exception.py +0 -0
  17. {jmcomic-2.6.11 → jmcomic-2.6.12}/src/jmcomic/jm_option.py +0 -0
  18. {jmcomic-2.6.11 → jmcomic-2.6.12}/src/jmcomic/jm_plugin.py +0 -0
  19. {jmcomic-2.6.11 → jmcomic-2.6.12}/src/jmcomic/jm_toolkit.py +0 -0
  20. {jmcomic-2.6.11 → jmcomic-2.6.12}/src/jmcomic.egg-info/SOURCES.txt +0 -0
  21. {jmcomic-2.6.11 → jmcomic-2.6.12}/src/jmcomic.egg-info/dependency_links.txt +0 -0
  22. {jmcomic-2.6.11 → jmcomic-2.6.12}/src/jmcomic.egg-info/entry_points.txt +0 -0
  23. {jmcomic-2.6.11 → jmcomic-2.6.12}/src/jmcomic.egg-info/requires.txt +0 -0
  24. {jmcomic-2.6.11 → jmcomic-2.6.12}/src/jmcomic.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jmcomic
3
- Version: 2.6.11
3
+ Version: 2.6.12
4
4
  Summary: Python API For JMComic (禁漫天堂)
5
5
  Home-page: https://github.com/hect0x7/JMComic-Crawler-Python
6
6
  Author: hect0x7
@@ -86,6 +86,9 @@ Dynamic: requires-python
86
86
  [【指路】教程:导出并下载你的禁漫收藏夹数据](./assets/docs/sources/tutorial/10_export_favorites.md)
87
87
 
88
88
 
89
+ ![introduction.jpg](./assets/docs/sources/images/introduction.jpg)
90
+
91
+
89
92
  ## 项目介绍
90
93
 
91
94
  本项目的核心功能是下载本子。
@@ -28,6 +28,9 @@
28
28
  [【指路】教程:导出并下载你的禁漫收藏夹数据](./assets/docs/sources/tutorial/10_export_favorites.md)
29
29
 
30
30
 
31
+ ![introduction.jpg](./assets/docs/sources/images/introduction.jpg)
32
+
33
+
31
34
  ## 项目介绍
32
35
 
33
36
  本项目的核心功能是下载本子。
@@ -2,7 +2,7 @@
2
2
  # 被依赖方 <--- 使用方
3
3
  # config <--- entity <--- toolkit <--- client <--- option <--- downloader
4
4
 
5
- __version__ = '2.6.11'
5
+ __version__ = '2.6.12'
6
6
 
7
7
  from .api import *
8
8
  from .jm_plugin import *
@@ -21,6 +21,9 @@ class JmMagicConstants:
21
21
  ORDER_BY_VIEW = 'mv'
22
22
  ORDER_BY_PICTURE = 'mp'
23
23
  ORDER_BY_LIKE = 'tf'
24
+ # 下面这两个目前只在网页上看到,app上没有
25
+ ORDER_BY_SCORE = 'tr'
26
+ ORDER_BY_COMMENT = 'md'
24
27
 
25
28
  ORDER_MONTH_RANKING = 'mv_m'
26
29
  ORDER_WEEK_RANKING = 'mv_w'
@@ -77,7 +80,7 @@ class JmMagicConstants:
77
80
  APP_TOKEN_SECRET_2 = '18comicAPPContent'
78
81
  APP_DATA_SECRET = '185Hcomic3PAPP7R'
79
82
  API_DOMAIN_SERVER_SECRET = 'diosfjckwpqpdfjkvnqQjsik'
80
- APP_VERSION = '2.0.13'
83
+ APP_VERSION = '2.0.16'
81
84
 
82
85
 
83
86
  # 模块级别共用配置
@@ -150,7 +153,7 @@ class JmModuleConfig:
150
153
 
151
154
  APP_HEADERS_IMAGE = {
152
155
  'Accept': 'image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8',
153
- 'X-Requested-With': 'com.jiaohua_browser',
156
+ 'X-Requested-With': 'com.JMComic3.app',
154
157
  'Referer': PROT + DOMAIN_API_LIST[0],
155
158
  'Accept-Language': 'zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7',
156
159
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jmcomic
3
- Version: 2.6.11
3
+ Version: 2.6.12
4
4
  Summary: Python API For JMComic (禁漫天堂)
5
5
  Home-page: https://github.com/hect0x7/JMComic-Crawler-Python
6
6
  Author: hect0x7
@@ -86,6 +86,9 @@ Dynamic: requires-python
86
86
  [【指路】教程:导出并下载你的禁漫收藏夹数据](./assets/docs/sources/tutorial/10_export_favorites.md)
87
87
 
88
88
 
89
+ ![introduction.jpg](./assets/docs/sources/images/introduction.jpg)
90
+
91
+
89
92
  ## 项目介绍
90
93
 
91
94
  本项目的核心功能是下载本子。
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes