sticker-convert 2.8.7__py3-none-any.whl → 2.8.8__py3-none-any.whl
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.
- sticker_convert/downloaders/download_base.py +4 -1
- sticker_convert/version.py +1 -1
- {sticker_convert-2.8.7.dist-info → sticker_convert-2.8.8.dist-info}/METADATA +3 -3
- {sticker_convert-2.8.7.dist-info → sticker_convert-2.8.8.dist-info}/RECORD +8 -8
- {sticker_convert-2.8.7.dist-info → sticker_convert-2.8.8.dist-info}/LICENSE +0 -0
- {sticker_convert-2.8.7.dist-info → sticker_convert-2.8.8.dist-info}/WHEEL +0 -0
- {sticker_convert-2.8.7.dist-info → sticker_convert-2.8.8.dist-info}/entry_points.txt +0 -0
- {sticker_convert-2.8.7.dist-info → sticker_convert-2.8.8.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,7 @@
|
|
1
1
|
#!/usr/bin/env python3
|
2
2
|
from __future__ import annotations
|
3
3
|
|
4
|
+
from functools import partial
|
4
5
|
from pathlib import Path
|
5
6
|
from typing import Any, List, Optional, Tuple
|
6
7
|
|
@@ -29,7 +30,9 @@ class DownloadBase:
|
|
29
30
|
def download_multiple_files(
|
30
31
|
self, targets: List[Tuple[str, Path]], retries: int = 3, **kwargs: Any
|
31
32
|
) -> None:
|
32
|
-
anyio.run(
|
33
|
+
anyio.run(
|
34
|
+
partial(self.download_multiple_files_async, targets, retries, **kwargs)
|
35
|
+
)
|
33
36
|
|
34
37
|
async def download_multiple_files_async(
|
35
38
|
self, targets: List[Tuple[str, Path]], retries: int = 3, **kwargs: Any
|
sticker_convert/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: sticker-convert
|
3
|
-
Version: 2.8.
|
3
|
+
Version: 2.8.8
|
4
4
|
Summary: Convert (animated) stickers to/from WhatsApp, Telegram, Signal, Line, Kakao, Viber, iMessage. Written in Python.
|
5
5
|
Author-email: laggykiller <chaudominic2@gmail.com>
|
6
6
|
Maintainer-email: laggykiller <chaudominic2@gmail.com>
|
@@ -369,7 +369,7 @@ Requires-Dist: anyio ~=4.3.0
|
|
369
369
|
Requires-Dist: apngasm-python ~=1.2.3
|
370
370
|
Requires-Dist: av ~=12.0.0
|
371
371
|
Requires-Dist: beautifulsoup4 ~=4.12.3
|
372
|
-
Requires-Dist: rookiepy ~=0.
|
372
|
+
Requires-Dist: rookiepy ~=0.5.1
|
373
373
|
Requires-Dist: imagequant ~=1.1.1
|
374
374
|
Requires-Dist: memory-tempfile ~=2.2.3
|
375
375
|
Requires-Dist: mergedeep ~=1.3.4
|
@@ -381,7 +381,7 @@ Requires-Dist: requests ~=2.31.0
|
|
381
381
|
Requires-Dist: rlottie-python ~=1.3.4
|
382
382
|
Requires-Dist: signalstickers-client-fork-laggykiller ~=3.3.0.post1
|
383
383
|
Requires-Dist: sqlcipher3-wheels ~=0.5.2.post1
|
384
|
-
Requires-Dist: tqdm ~=4.66.
|
384
|
+
Requires-Dist: tqdm ~=4.66.4
|
385
385
|
Requires-Dist: ttkbootstrap-fork-laggykiller ~=1.5.1
|
386
386
|
Requires-Dist: webp ~=0.3.0
|
387
387
|
|
@@ -6,9 +6,9 @@ sticker_convert/definitions.py,sha256=ZhP2ALCEud-w9ZZD4c3TDG9eHGPZyaAL7zPUsJAbjt
|
|
6
6
|
sticker_convert/gui.py,sha256=TRPGwMhSMPHnZppHmw2OWHKTJtGoeLpGWD0eRYi4_yk,30707
|
7
7
|
sticker_convert/job.py,sha256=vKv1--y4MVmZV_IBpUhEfNEiUeEqrTR1umzlALPXKdw,25775
|
8
8
|
sticker_convert/job_option.py,sha256=JHAFCxp7-dDwD-1PbpYLAFRF3OoJu8cj_BjOm5r8Gp8,7732
|
9
|
-
sticker_convert/version.py,sha256=
|
9
|
+
sticker_convert/version.py,sha256=NgVoPL4PBh23ueR5NkJVXlVHy6AGoldBVKqY4xIiViY,46
|
10
10
|
sticker_convert/downloaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
|
-
sticker_convert/downloaders/download_base.py,sha256=
|
11
|
+
sticker_convert/downloaders/download_base.py,sha256=x18bI2mPpbXRnSmStBHEb1IvN-VPCilOHLQUs6YPUEU,4041
|
12
12
|
sticker_convert/downloaders/download_kakao.py,sha256=UFp7EpMea62fIePY5DfhH4jThAwdeazfoC5iW1g4dAo,8516
|
13
13
|
sticker_convert/downloaders/download_line.py,sha256=9WzOWujTbZdAqBi52k21OUEfRmcV1loCaJiDmg6dklw,17853
|
14
14
|
sticker_convert/downloaders/download_signal.py,sha256=PfwscdbcEd_5C3Ecs0F8Qc8si1sLzLodAdnsHVwXgac,3063
|
@@ -93,9 +93,9 @@ sticker_convert/utils/media/apple_png_normalize.py,sha256=LbrQhc7LlYX4I9ek4XJsZE
|
|
93
93
|
sticker_convert/utils/media/codec_info.py,sha256=SJSFvQzXHnGkj7MH9xJ5xiC4cqiOjFKckFKE_FICdT4,15562
|
94
94
|
sticker_convert/utils/media/decrypt_kakao.py,sha256=4wq9ZDRnFkx1WmFZnyEogBofiLGsWQM_X69HlA36578,1947
|
95
95
|
sticker_convert/utils/media/format_verify.py,sha256=Xf94jyqk_6M9IlFGMy0wYIgQKn_yg00nD4XW0CgAbew,5732
|
96
|
-
sticker_convert-2.8.
|
97
|
-
sticker_convert-2.8.
|
98
|
-
sticker_convert-2.8.
|
99
|
-
sticker_convert-2.8.
|
100
|
-
sticker_convert-2.8.
|
101
|
-
sticker_convert-2.8.
|
96
|
+
sticker_convert-2.8.8.dist-info/LICENSE,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
97
|
+
sticker_convert-2.8.8.dist-info/METADATA,sha256=2LglWjdHEV5CgH5VD5XpSVcsWqQRu3cHYWAkZ0NHX18,50061
|
98
|
+
sticker_convert-2.8.8.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
99
|
+
sticker_convert-2.8.8.dist-info/entry_points.txt,sha256=MNJ7XyC--ugxi5jS1nzjDLGnxCyLuaGdsVLnJhDHCqs,66
|
100
|
+
sticker_convert-2.8.8.dist-info/top_level.txt,sha256=r9vfnB0l1ZnH5pTH5RvkobnK3Ow9m0RsncaOMAtiAtk,16
|
101
|
+
sticker_convert-2.8.8.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|