jmcomic 2.6.1__tar.gz → 2.6.2__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 (23) hide show
  1. {jmcomic-2.6.1/src/jmcomic.egg-info → jmcomic-2.6.2}/PKG-INFO +1 -1
  2. {jmcomic-2.6.1 → jmcomic-2.6.2}/src/jmcomic/__init__.py +1 -1
  3. {jmcomic-2.6.1 → jmcomic-2.6.2}/src/jmcomic/jm_client_impl.py +1 -1
  4. {jmcomic-2.6.1 → jmcomic-2.6.2}/src/jmcomic/jm_option.py +1 -1
  5. {jmcomic-2.6.1 → jmcomic-2.6.2/src/jmcomic.egg-info}/PKG-INFO +1 -1
  6. {jmcomic-2.6.1 → jmcomic-2.6.2}/LICENSE +0 -0
  7. {jmcomic-2.6.1 → jmcomic-2.6.2}/README.md +0 -0
  8. {jmcomic-2.6.1 → jmcomic-2.6.2}/setup.cfg +0 -0
  9. {jmcomic-2.6.1 → jmcomic-2.6.2}/setup.py +0 -0
  10. {jmcomic-2.6.1 → jmcomic-2.6.2}/src/jmcomic/api.py +0 -0
  11. {jmcomic-2.6.1 → jmcomic-2.6.2}/src/jmcomic/cl.py +0 -0
  12. {jmcomic-2.6.1 → jmcomic-2.6.2}/src/jmcomic/jm_client_interface.py +0 -0
  13. {jmcomic-2.6.1 → jmcomic-2.6.2}/src/jmcomic/jm_config.py +0 -0
  14. {jmcomic-2.6.1 → jmcomic-2.6.2}/src/jmcomic/jm_downloader.py +0 -0
  15. {jmcomic-2.6.1 → jmcomic-2.6.2}/src/jmcomic/jm_entity.py +0 -0
  16. {jmcomic-2.6.1 → jmcomic-2.6.2}/src/jmcomic/jm_exception.py +0 -0
  17. {jmcomic-2.6.1 → jmcomic-2.6.2}/src/jmcomic/jm_plugin.py +0 -0
  18. {jmcomic-2.6.1 → jmcomic-2.6.2}/src/jmcomic/jm_toolkit.py +0 -0
  19. {jmcomic-2.6.1 → jmcomic-2.6.2}/src/jmcomic.egg-info/SOURCES.txt +0 -0
  20. {jmcomic-2.6.1 → jmcomic-2.6.2}/src/jmcomic.egg-info/dependency_links.txt +0 -0
  21. {jmcomic-2.6.1 → jmcomic-2.6.2}/src/jmcomic.egg-info/entry_points.txt +0 -0
  22. {jmcomic-2.6.1 → jmcomic-2.6.2}/src/jmcomic.egg-info/requires.txt +0 -0
  23. {jmcomic-2.6.1 → jmcomic-2.6.2}/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.1
3
+ Version: 2.6.2
4
4
  Summary: Python API For JMComic (禁漫天堂)
5
5
  Home-page: https://github.com/hect0x7/JMComic-Crawler-Python
6
6
  Author: hect0x7
@@ -2,7 +2,7 @@
2
2
  # 被依赖方 <--- 使用方
3
3
  # config <--- entity <--- toolkit <--- client <--- option <--- downloader
4
4
 
5
- __version__ = '2.6.1'
5
+ __version__ = '2.6.2'
6
6
 
7
7
  from .api import *
8
8
  from .jm_plugin import *
@@ -1033,7 +1033,7 @@ class JmApiClient(AbstractJmClient):
1033
1033
  jm_log('api.update_domain.empty',
1034
1034
  f'获取禁漫最新API域名失败, 返回值: {res_json}')
1035
1035
  return
1036
- new_server_list: list[str] = res_data['Server']
1036
+ new_server_list: List[str] = res_data['Server']
1037
1037
  old_server_list = JmModuleConfig.DOMAIN_API_LIST
1038
1038
  jm_log('api.update_domain.success',
1039
1039
  f'获取到最新的API域名,替换jmcomic内置域名:(new){new_server_list} ---→ (old){old_server_list}'
@@ -134,7 +134,7 @@ class DirRule:
134
134
  return str(DetailEntity.get_dirname(detail, rule[1:]))
135
135
 
136
136
  # noinspection PyMethodMayBeStatic
137
- def split_rule_dsl(self, rule_dsl: str) -> list[str]:
137
+ def split_rule_dsl(self, rule_dsl: str) -> List[str]:
138
138
  if '/' in rule_dsl:
139
139
  rule_list = rule_dsl.split('/')
140
140
  elif '_' in rule_dsl:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jmcomic
3
- Version: 2.6.1
3
+ Version: 2.6.2
4
4
  Summary: Python API For JMComic (禁漫天堂)
5
5
  Home-page: https://github.com/hect0x7/JMComic-Crawler-Python
6
6
  Author: hect0x7
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes