jmcomic 0.4.8__tar.gz → 0.5.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: jmcomic
3
- Version: 0.4.8
3
+ Version: 0.5.0
4
4
  Summary: Python API For JMComic (禁漫天堂)
5
5
  Home-page: https://github.com/hect0x7/JMComic-Crawler-Python
6
6
  Author: hect0x7
@@ -15,6 +15,6 @@ Classifier: Operating System :: Microsoft :: Windows
15
15
  Requires-Python: >=3.7
16
16
  Description-Content-Type: text/markdown
17
17
 
18
- Python API For JMComic (绂佹极澶╁爞)
18
+ Python API For JMComic (禁漫天堂)
19
19
 
20
20
  see source code: https://github.com/hect0x7/JMComic-Crawler-Python
@@ -274,7 +274,7 @@ class JmSearchPage(IterableEntity):
274
274
  # (album_id, title, category_none, label_sub_none, tag_list)
275
275
  self.data: List[Tuple[str, str, StrNone, StrNone, List[str]]] = album_info_list
276
276
 
277
- def album_id_iter(self) -> Iterable[str]:
277
+ def album_id_iter(self):
278
278
  for album_info in self.data:
279
279
  yield album_info[0]
280
280
 
@@ -60,6 +60,7 @@ class DownloadDirTree:
60
60
  if album_dir is None:
61
61
  return f'{self.Bd}{photo_dir}/'
62
62
 
63
+ album_dir = fix_windir_name(album_dir)
63
64
  return f'{self.Bd}{album_dir}/{photo_dir}/'
64
65
 
65
66
  def photo_dir(flag_for_title):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: jmcomic
3
- Version: 0.4.8
3
+ Version: 0.5.0
4
4
  Summary: Python API For JMComic (禁漫天堂)
5
5
  Home-page: https://github.com/hect0x7/JMComic-Crawler-Python
6
6
  Author: hect0x7
@@ -15,6 +15,6 @@ Classifier: Operating System :: Microsoft :: Windows
15
15
  Requires-Python: >=3.7
16
16
  Description-Content-Type: text/markdown
17
17
 
18
- Python API For JMComic (绂佹极澶╁爞)
18
+ Python API For JMComic (禁漫天堂)
19
19
 
20
20
  see source code: https://github.com/hect0x7/JMComic-Crawler-Python
@@ -1,9 +1,9 @@
1
1
  from setuptools import setup, find_packages
2
2
 
3
- with open("README.md") as f:
3
+ with open("README.md", 'r', encoding='utf-8') as f:
4
4
  long_description = f.read()
5
5
 
6
- version = '0.4.8'
6
+ version = '0.5.0'
7
7
 
8
8
  setup(
9
9
  name='jmcomic',
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes