sticker-convert 2.10.4__py3-none-any.whl → 2.10.6__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- sticker_convert/gui_components/frames/cred_frame.py +3 -1
- sticker_convert/utils/chrome_remotedebug.py +10 -1
- sticker_convert/version.py +1 -1
- {sticker_convert-2.10.4.dist-info → sticker_convert-2.10.6.dist-info}/METADATA +5 -5
- {sticker_convert-2.10.4.dist-info → sticker_convert-2.10.6.dist-info}/RECORD +9 -9
- {sticker_convert-2.10.4.dist-info → sticker_convert-2.10.6.dist-info}/WHEEL +1 -1
- {sticker_convert-2.10.4.dist-info → sticker_convert-2.10.6.dist-info}/LICENSE +0 -0
- {sticker_convert-2.10.4.dist-info → sticker_convert-2.10.6.dist-info}/entry_points.txt +0 -0
- {sticker_convert-2.10.4.dist-info → sticker_convert-2.10.6.dist-info}/top_level.txt +0 -0
@@ -202,5 +202,7 @@ class CredFrame(LabelFrame):
|
|
202
202
|
self.kakao_get_auth_btn.config(state=state)
|
203
203
|
self.line_cookies_entry.config(state=state)
|
204
204
|
self.line_get_auth_btn.config(state=state)
|
205
|
-
self.viber_auth_lbl.config(state=state)
|
206
205
|
self.viber_auth_entry.config(state=state)
|
206
|
+
self.viber_get_auth_btn.config(state=state)
|
207
|
+
self.discord_token_entry.config(state=state)
|
208
|
+
self.discord_get_auth_btn.config(state=state)
|
@@ -84,7 +84,7 @@ class CRD:
|
|
84
84
|
def connect(self):
|
85
85
|
self.cmd_id = 1
|
86
86
|
r = None
|
87
|
-
for _ in range(
|
87
|
+
for _ in range(5):
|
88
88
|
try:
|
89
89
|
r = requests.get(f"http://localhost:{self.port}/json")
|
90
90
|
break
|
@@ -95,6 +95,15 @@ class CRD:
|
|
95
95
|
raise RuntimeError("Cannot connect to chrome debugging port")
|
96
96
|
|
97
97
|
targets = json.loads(r.text)
|
98
|
+
for _ in range(5):
|
99
|
+
if len(targets) == 0:
|
100
|
+
time.sleep(1)
|
101
|
+
else:
|
102
|
+
break
|
103
|
+
|
104
|
+
if len(targets) == 0:
|
105
|
+
raise RuntimeError("Cannot create websocket connection with debugger")
|
106
|
+
|
98
107
|
self.ws = websocket.create_connection(targets[0]["webSocketDebuggerUrl"]) # type: ignore
|
99
108
|
|
100
109
|
def send_cmd(self, command: Dict[Any, Any]) -> Union[str, bytes]:
|
sticker_convert/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: sticker-convert
|
3
|
-
Version: 2.10.
|
3
|
+
Version: 2.10.6
|
4
4
|
Summary: Convert (animated) stickers to/from WhatsApp, Telegram, Signal, Line, Kakao, Viber, Discord, iMessage. Written in Python.
|
5
5
|
Author-email: laggykiller <chaudominic2@gmail.com>
|
6
6
|
Maintainer-email: laggykiller <chaudominic2@gmail.com>
|
@@ -368,22 +368,22 @@ Requires-Dist: anyio ~=4.6.2.post1
|
|
368
368
|
Requires-Dist: apngasm-python ~=1.3.1
|
369
369
|
Requires-Dist: av ~=13.1.0
|
370
370
|
Requires-Dist: beautifulsoup4 ~=4.12.3
|
371
|
-
Requires-Dist: rookiepy ~=0.5.
|
371
|
+
Requires-Dist: rookiepy ~=0.5.6
|
372
372
|
Requires-Dist: httpx ~=0.27.2
|
373
|
-
Requires-Dist: imagequant ~=1.1.
|
373
|
+
Requires-Dist: imagequant ~=1.1.2
|
374
374
|
Requires-Dist: memory-tempfile ~=2.2.3
|
375
375
|
Requires-Dist: mergedeep ~=1.3.4
|
376
376
|
Requires-Dist: mini-racer ~=0.12.4
|
377
377
|
Requires-Dist: numpy >=1.22.4
|
378
378
|
Requires-Dist: Pillow ~=11.0.0
|
379
379
|
Requires-Dist: pyoxipng ~=9.0.0
|
380
|
-
Requires-Dist: python-telegram-bot ~=21.
|
380
|
+
Requires-Dist: python-telegram-bot ~=21.7
|
381
381
|
Requires-Dist: psutil ~=6.1.0
|
382
382
|
Requires-Dist: PyMemoryEditor ~=1.5.22
|
383
383
|
Requires-Dist: requests ~=2.32.3
|
384
384
|
Requires-Dist: rlottie-python ~=1.3.6
|
385
385
|
Requires-Dist: signalstickers-client-fork-laggykiller ~=3.3.0.post2
|
386
|
-
Requires-Dist: tqdm ~=4.
|
386
|
+
Requires-Dist: tqdm ~=4.67.0
|
387
387
|
Requires-Dist: ttkbootstrap-fork-laggykiller ~=1.5.1
|
388
388
|
Requires-Dist: websocket-client ~=1.8.0
|
389
389
|
|
@@ -6,7 +6,7 @@ sticker_convert/definitions.py,sha256=ZhP2ALCEud-w9ZZD4c3TDG9eHGPZyaAL7zPUsJAbjt
|
|
6
6
|
sticker_convert/gui.py,sha256=IsVCXr5_6mzBgIgXtUICI3fcKu51J9WaLE9MBLrm5t4,33064
|
7
7
|
sticker_convert/job.py,sha256=ae0DKz74nctDLSI0VU7BYI4dx3kwTM8ynky_aLspQVU,26491
|
8
8
|
sticker_convert/job_option.py,sha256=lhcyioT6qPHrNYRBTv5wxPmmY9RkATo1-DE7-lzCwp0,7887
|
9
|
-
sticker_convert/version.py,sha256=
|
9
|
+
sticker_convert/version.py,sha256=CA6awuoZNzvC34IGCF-QBlpVEft9-A824kERwfZDAmU,47
|
10
10
|
sticker_convert/downloaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
11
|
sticker_convert/downloaders/download_base.py,sha256=a34JcNBgZ5yf6gZnxc-B5uNaKVUG-vs3sjOJnLneWsw,4468
|
12
12
|
sticker_convert/downloaders/download_discord.py,sha256=HeQFjJ7igb5KOk0aXQAUEuJ9OoPKyiE_mAD2_AW9PDw,3435
|
@@ -21,7 +21,7 @@ sticker_convert/gui_components/frames/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCe
|
|
21
21
|
sticker_convert/gui_components/frames/comp_frame.py,sha256=9k_UntKKi2G_g0byzoj1rdTqOq7q9mcnXiy799bYnr0,7257
|
22
22
|
sticker_convert/gui_components/frames/config_frame.py,sha256=b3X4QAnGpde0OhthXHmjSyU_Yb5tYRUFXmy04Yi8Zmo,4316
|
23
23
|
sticker_convert/gui_components/frames/control_frame.py,sha256=_XiOJ9JPUfiysDghGG04sEVLrXG9TMVlDZ60W0LhYVI,835
|
24
|
-
sticker_convert/gui_components/frames/cred_frame.py,sha256=
|
24
|
+
sticker_convert/gui_components/frames/cred_frame.py,sha256=cfNUuJKy1h0fprZwo7pbaTswTVKnJQFt9K5nexeZCRo,8603
|
25
25
|
sticker_convert/gui_components/frames/input_frame.py,sha256=5Vz1d6J1jkofvvzm43DxeIW_CjWfxa2QPYFnkAAiAfM,5040
|
26
26
|
sticker_convert/gui_components/frames/output_frame.py,sha256=n2WLk22h61DoZli8WbFhd-h2CqWAebDXnBa051JBuOc,4260
|
27
27
|
sticker_convert/gui_components/frames/progress_frame.py,sha256=LWUZg_iL7iiNTfu7N5Ct_pklZdghxihENi7DP9YozOE,4915
|
@@ -85,7 +85,7 @@ sticker_convert/uploaders/upload_telegram.py,sha256=cb4FzYSF5oxs0QpilEyzepk2tcDC
|
|
85
85
|
sticker_convert/uploaders/upload_viber.py,sha256=DiY54RstBtVJEfp6rGo0cpABx0X2qI873pJ6tTH-Q9U,6189
|
86
86
|
sticker_convert/uploaders/xcode_imessage.py,sha256=1gvOljf6kYsq_11tYhnF19Yf4oGY5y34te2DWBRMwf0,11254
|
87
87
|
sticker_convert/utils/callback.py,sha256=spYUGlklOs1yPZAxoqwOWgR1sdimpfM8a27if3TaVYk,6155
|
88
|
-
sticker_convert/utils/chrome_remotedebug.py,sha256=
|
88
|
+
sticker_convert/utils/chrome_remotedebug.py,sha256=tLc1C1u7U3kJvAi1WFK5_3gKcdfg4x6SAkTIX2g87VE,4765
|
89
89
|
sticker_convert/utils/emoji.py,sha256=AqB26JY-PkYzNwPLReSnqLiQKe-bR9UXnLclAbgubJ8,367
|
90
90
|
sticker_convert/utils/process.py,sha256=EAQZ9WpiKmkvToIv8G1HNY4V7m0jXyyePTmeP2XOZzE,4688
|
91
91
|
sticker_convert/utils/url_detect.py,sha256=LTzHIHOD-L-nBE4WZEW3t0qFi1ABAegSZxLdURrPH2o,906
|
@@ -105,9 +105,9 @@ sticker_convert/utils/media/apple_png_normalize.py,sha256=LbrQhc7LlYX4I9ek4XJsZE
|
|
105
105
|
sticker_convert/utils/media/codec_info.py,sha256=XoEWBfPWTzr4zSVQIU1XF1yh5viHxH5FytNEpdZR38c,14874
|
106
106
|
sticker_convert/utils/media/decrypt_kakao.py,sha256=4wq9ZDRnFkx1WmFZnyEogBofiLGsWQM_X69HlA36578,1947
|
107
107
|
sticker_convert/utils/media/format_verify.py,sha256=MH68GLJfXeL8WFT8emtj355K5BLAtUX64tQ59nugx2c,5673
|
108
|
-
sticker_convert-2.10.
|
109
|
-
sticker_convert-2.10.
|
110
|
-
sticker_convert-2.10.
|
111
|
-
sticker_convert-2.10.
|
112
|
-
sticker_convert-2.10.
|
113
|
-
sticker_convert-2.10.
|
108
|
+
sticker_convert-2.10.6.dist-info/LICENSE,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
109
|
+
sticker_convert-2.10.6.dist-info/METADATA,sha256=qXiR2avOMn9Ll57x_i7deaNpyrLQq6LyfRdOqRAK4vI,52498
|
110
|
+
sticker_convert-2.10.6.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
|
111
|
+
sticker_convert-2.10.6.dist-info/entry_points.txt,sha256=MNJ7XyC--ugxi5jS1nzjDLGnxCyLuaGdsVLnJhDHCqs,66
|
112
|
+
sticker_convert-2.10.6.dist-info/top_level.txt,sha256=r9vfnB0l1ZnH5pTH5RvkobnK3Ow9m0RsncaOMAtiAtk,16
|
113
|
+
sticker_convert-2.10.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|