sticker-convert 2.10.9__py3-none-any.whl → 2.11.1__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (27) hide show
  1. sticker_convert/cli.py +46 -8
  2. sticker_convert/converter.py +13 -11
  3. sticker_convert/downloaders/download_base.py +5 -5
  4. sticker_convert/downloaders/download_signal.py +4 -2
  5. sticker_convert/downloaders/download_telegram.py +19 -103
  6. sticker_convert/gui.py +12 -0
  7. sticker_convert/gui_components/frames/cred_frame.py +38 -13
  8. sticker_convert/job.py +8 -8
  9. sticker_convert/job_option.py +6 -0
  10. sticker_convert/resources/compression.json +2 -2
  11. sticker_convert/resources/help.json +3 -2
  12. sticker_convert/resources/input.json +10 -0
  13. sticker_convert/resources/output.json +16 -0
  14. sticker_convert/uploaders/compress_wastickers.py +76 -56
  15. sticker_convert/uploaders/upload_telegram.py +170 -234
  16. sticker_convert/uploaders/upload_viber.py +18 -19
  17. sticker_convert/utils/auth/telegram_api.py +670 -0
  18. sticker_convert/utils/auth/telethon_setup.py +79 -0
  19. sticker_convert/utils/files/metadata_handler.py +3 -3
  20. sticker_convert/utils/url_detect.py +1 -1
  21. sticker_convert/version.py +1 -1
  22. {sticker_convert-2.10.9.dist-info → sticker_convert-2.11.1.dist-info}/METADATA +53 -35
  23. {sticker_convert-2.10.9.dist-info → sticker_convert-2.11.1.dist-info}/RECORD +27 -25
  24. {sticker_convert-2.10.9.dist-info → sticker_convert-2.11.1.dist-info}/WHEEL +1 -1
  25. {sticker_convert-2.10.9.dist-info → sticker_convert-2.11.1.dist-info}/LICENSE +0 -0
  26. {sticker_convert-2.10.9.dist-info → sticker_convert-2.11.1.dist-info}/entry_points.txt +0 -0
  27. {sticker_convert-2.10.9.dist-info → sticker_convert-2.11.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,79 @@
1
+ #!/usr/bin/env python3
2
+ from typing import Callable, Tuple
3
+
4
+ import anyio
5
+ from telethon import TelegramClient # type: ignore
6
+
7
+ from sticker_convert.definitions import CONFIG_DIR
8
+ from sticker_convert.job_option import CredOption
9
+
10
+ GUIDE_MSG = """1. Visit https://my.telegram.org
11
+ 2. Login using your phone number
12
+ 3. Go to "API development tools"
13
+ 4. Fill form
14
+ - App title: sticker-convert
15
+ - Short name: sticker-convert
16
+ - URL: www.telegram.org
17
+ - Platform: Desktop
18
+ - Description: sticker-convert
19
+ 5. Note down api_id and api_hash
20
+ Continue when done"""
21
+
22
+
23
+ class TelethonSetup:
24
+ def __init__(self, opt_cred: CredOption, cb_ask_str: Callable[..., str] = input):
25
+ self.cb_ask_str = cb_ask_str
26
+ self.opt_cred = opt_cred
27
+
28
+ async def signin_async(self) -> Tuple[bool, TelegramClient, int, str]:
29
+ client = TelegramClient(
30
+ CONFIG_DIR / f"telethon-{self.opt_cred.telethon_api_id}.session",
31
+ self.opt_cred.telethon_api_id,
32
+ self.opt_cred.telethon_api_hash,
33
+ )
34
+
35
+ await client.connect()
36
+ authed = await client.is_user_authorized()
37
+ if authed is False:
38
+ phone_number = self.cb_ask_str("Enter phone number: ")
39
+ await client.send_code_request(phone_number)
40
+ code = self.cb_ask_str("Enter code: ")
41
+ await client.sign_in(phone_number, code)
42
+ authed = await client.is_user_authorized()
43
+
44
+ return (
45
+ authed,
46
+ client,
47
+ self.opt_cred.telethon_api_id,
48
+ self.opt_cred.telethon_api_hash,
49
+ )
50
+
51
+ def guide(self) -> None:
52
+ self.cb_ask_str(GUIDE_MSG)
53
+
54
+ def get_api_info(self) -> None:
55
+ api_id_ask = "Enter api_id: "
56
+ wrong_hint = ""
57
+ while True:
58
+ telethon_api_id = self.cb_ask_str(wrong_hint + api_id_ask)
59
+ if telethon_api_id.isnumeric():
60
+ self.opt_cred.telethon_api_id = int(telethon_api_id)
61
+ break
62
+ else:
63
+ wrong_hint = "Error: api_id should be numeric\n"
64
+ self.opt_cred.telethon_api_hash = self.cb_ask_str("Enter api_hash: ")
65
+
66
+ def signin(self) -> Tuple[bool, TelegramClient, int, str]:
67
+ return anyio.run(self.signin_async)
68
+
69
+ def start(self) -> Tuple[bool, TelegramClient, int, str]:
70
+ if self.opt_cred.telethon_api_id == 0 or self.opt_cred.telethon_api_hash == "":
71
+ self.guide()
72
+ self.get_api_info()
73
+ return self.signin()
74
+
75
+ async def start_async(self) -> Tuple[bool, TelegramClient, int, str]:
76
+ if self.opt_cred.telethon_api_id == 0 or self.opt_cred.telethon_api_hash == "":
77
+ self.guide()
78
+ self.get_api_info()
79
+ return await self.signin_async()
@@ -264,7 +264,7 @@ class MetadataHandler:
264
264
  if len(anim_stickers) == file_per_anim_pack or (
265
265
  finished_all and len(anim_stickers) > 0
266
266
  ):
267
- suffix = f'{"-anim" if image_present else ""}{"-" + str(anim_pack_count) if anim_pack_count > 0 else ""}'
267
+ suffix = f"{'-anim' if image_present else ''}{'-' + str(anim_pack_count) if anim_pack_count > 0 else ''}"
268
268
  title_current = str(title) + suffix
269
269
  packs[title_current] = anim_stickers.copy()
270
270
  anim_stickers = []
@@ -272,7 +272,7 @@ class MetadataHandler:
272
272
  if len(image_stickers) == file_per_image_pack or (
273
273
  finished_all and len(image_stickers) > 0
274
274
  ):
275
- suffix = f'{"-image" if anim_present else ""}{"-" + str(image_pack_count) if image_pack_count > 0 else ""}'
275
+ suffix = f"{'-image' if anim_present else ''}{'-' + str(image_pack_count) if image_pack_count > 0 else ''}"
276
276
  title_current = str(title) + suffix
277
277
  packs[title_current] = image_stickers.copy()
278
278
  image_stickers = []
@@ -292,7 +292,7 @@ class MetadataHandler:
292
292
  if len(stickers) == file_per_pack or (
293
293
  finished_all and len(stickers) > 0
294
294
  ):
295
- suffix = f'{"-" + str(pack_count) if pack_count > 0 else ""}'
295
+ suffix = f"{'-' + str(pack_count) if pack_count > 0 else ''}"
296
296
  title_current = str(title) + suffix
297
297
  packs[title_current] = stickers.copy()
298
298
  stickers = []
@@ -9,7 +9,7 @@ class UrlDetect:
9
9
  def detect(url: str) -> Optional[str]:
10
10
  domain = urlparse(url).netloc
11
11
 
12
- if domain == "signal.art":
12
+ if domain == "signal.art" or url.startswith("sgnl://addstickers/"):
13
13
  return "signal"
14
14
 
15
15
  if domain in ("telegram.me", "t.me"):
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env python3
2
2
 
3
- __version__ = "2.10.9"
3
+ __version__ = "2.11.1"
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: sticker-convert
3
- Version: 2.10.9
3
+ Version: 2.11.1
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>
@@ -364,10 +364,11 @@ Requires-Python: >=3.9
364
364
  Description-Content-Type: text/markdown
365
365
  License-File: LICENSE
366
366
  Requires-Dist: aiolimiter~=1.2.1
367
- Requires-Dist: anyio~=4.7.0
367
+ Requires-Dist: anyio~=4.8.0
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: cryptg~=0.5.0.post0
371
372
  Requires-Dist: rookiepy~=0.5.6
372
373
  Requires-Dist: httpx~=0.28.1
373
374
  Requires-Dist: imagequant~=1.1.3
@@ -375,14 +376,15 @@ Requires-Dist: memory-tempfile~=2.2.3
375
376
  Requires-Dist: mergedeep~=1.3.4
376
377
  Requires-Dist: mini-racer~=0.12.4
377
378
  Requires-Dist: numpy>=1.22.4
378
- Requires-Dist: Pillow~=10.4.0
379
+ Requires-Dist: Pillow~=11.1.0
379
380
  Requires-Dist: pyoxipng~=9.0.0
380
- Requires-Dist: python-telegram-bot~=21.9
381
- Requires-Dist: psutil~=6.1.0
381
+ Requires-Dist: python-telegram-bot~=21.10
382
+ Requires-Dist: psutil~=6.1.1
382
383
  Requires-Dist: PyMemoryEditor~=1.5.22
383
384
  Requires-Dist: requests~=2.32.3
384
385
  Requires-Dist: rlottie_python~=1.3.6
385
386
  Requires-Dist: signalstickers-client-fork-laggykiller~=3.3.0.post2
387
+ Requires-Dist: telethon~=1.38.1
386
388
  Requires-Dist: tqdm~=4.67.1
387
389
  Requires-Dist: ttkbootstrap-fork-laggykiller~=1.5.1
388
390
  Requires-Dist: websocket_client~=1.8.0
@@ -424,16 +426,16 @@ Requires-Dist: websocket_client~=1.8.0
424
426
  - [DISCLAIMER](#disclaimer)
425
427
 
426
428
  ## Compatibility
427
- | Application | ⬇️ Download | ⬆️ Upload |
428
- | ------------------------------------- | ------------------------------------| --------------------------------------------------- |
429
- | [Signal](docs/guide_signal.md) | ✅ | ✅ (Require `uuid` & `password` or manually) |
430
- | [Telegram](docs/guide_telegram.md) | ✅ (Require `token`) | ✅ (Require `token` & `user_id` or manually) |
431
- | [WhatsApp](docs/guide_whatsapp.md) | ⭕ (By Android or WhatsApp Web) | ⭕ (Create `.wastickers`, import by Sticker Maker) |
432
- | [Line](docs/guide_line.md) | ✅ | 🚫 (Need to submit for manual approval) |
433
- | [Kakao](docs/guide_kakao.md) | ✅ (Need 'share link' for animated) | 🚫 (Need to submit for manual approval) |
434
- | [Viber](docs/guide_viber.md) | ✅ | ✅ (Require `viber_auth`) |
435
- | [Discord](docs/guide_discord.md) | ✅ (Require `token`) | 🚫 |
436
- | [iMessage](docs/guide_imessage.md) | 🚫 | ⭕ (Create Xcode stickerpack project for sideload) |
429
+ | Application | ⬇️ Download | ⬆️ Upload |
430
+ | ------------------------------------- | ------------------------------------| --------------------------------------------------------- |
431
+ | [Signal](docs/guide_signal.md) | ✅ | ✅ (Require `uuid` & `password` or manually) |
432
+ | [Telegram](docs/guide_telegram.md) | ✅ (Require `token` or telethon) | ✅ (Require `token` & `user_id` or telethon or manually) |
433
+ | [WhatsApp](docs/guide_whatsapp.md) | ⭕ (By Android or WhatsApp Web) | ⭕ (Create `.wastickers`, import by Sticker Maker) |
434
+ | [Line](docs/guide_line.md) | ✅ | 🚫 (Need to submit for manual approval) |
435
+ | [Kakao](docs/guide_kakao.md) | ✅ (Need 'share link' for animated) | 🚫 (Need to submit for manual approval) |
436
+ | [Viber](docs/guide_viber.md) | ✅ | ✅ (Require `viber_auth`) |
437
+ | [Discord](docs/guide_discord.md) | ✅ (Require `token`) | 🚫 |
438
+ | [iMessage](docs/guide_imessage.md) | 🚫 | ⭕ (Create Xcode stickerpack project for sideload) |
437
439
 
438
440
  ✅ = Supported ⭕ = Partially supported 🚫 = Not supported
439
441
 
@@ -443,8 +445,8 @@ Requires-Dist: websocket_client~=1.8.0
443
445
  - `uuid` and `password` are needed if you want to automatically upload the pack with the program. View FAQ for more information.
444
446
  - Alternatively, you may use Signal Desktop to manually upload and create sticker pack with the output of this prorgam.
445
447
  - Telegram
446
- - Download: Supported (e.g. `https://telegram.me/addstickers/xxxxx`) for both stickers and custom emoji, but require bot token.
447
- - Upload: Supported for both stickers and custom emoji, but require bot token and user_id. Alternatively, you may manually upload and create sticker pack with the output of this program.
448
+ - Download: Supported (e.g. `https://telegram.me/addstickers/xxxxx`) for both stickers and custom emoji, but require bot token or setup Telethon
449
+ - Upload: Supported for both stickers and custom emoji, but require bot token and user_id or setup Telethon. Alternatively, you may manually upload and create sticker pack with the output of this program.
448
450
  - WhatsApp
449
451
  - Download: You have to manually find sticker packs / extract from your phone or from WhatsApp Web.
450
452
  - Android Phone: Inside `/storage/emulated/0/Whatsapp/media/Whatsapp Stickers` OR `/storage/emulated/0/Android/media/com.whatsapp/WhatsApp/Media/WhatsApp Stickers`
@@ -485,22 +487,30 @@ Requires-Dist: websocket_client~=1.8.0
485
487
  To run in CLI mode, pass on any arguments
486
488
 
487
489
  ```
488
- usage: sticker-convert.py [-h] [--version] [--no-confirm] [--no-progress] [--custom-presets CUSTOM_PRESETS] [--input-dir INPUT_DIR]
489
- [--download-auto DOWNLOAD_AUTO | --download-signal DOWNLOAD_SIGNAL | --download-telegram DOWNLOAD_TELEGRAM | --download-line DOWNLOAD_LINE | --download-kakao DOWNLOAD_KAKAO | --download-viber DOWNLOAD_VIBER | --download-discord DOWNLOAD_DISCORD | --download-discord-emoji DOWNLOAD_DISCORD_EMOJI]
490
+ usage: sticker-convert.py [-h] [--version] [--no-confirm] [--no-progress] [--custom-presets CUSTOM_PRESETS]
491
+ [--input-dir INPUT_DIR]
492
+ [--download-auto DOWNLOAD_AUTO | --download-signal DOWNLOAD_SIGNAL | --download-telegram DOWNLOAD_TELEGRAM | --download-telegram-telethon DOWNLOAD_TELEGRAM_TELETHON | --download-line DOWNLOAD_LINE | --download-kakao DOWNLOAD_KAKAO | --download-viber DOWNLOAD_VIBER | --download-discord DOWNLOAD_DISCORD | --download-discord-emoji DOWNLOAD_DISCORD_EMOJI]
490
493
  [--output-dir OUTPUT_DIR] [--author AUTHOR] [--title TITLE]
491
- [--export-signal | --export-telegram | --export-telegram-emoji | --export-viber | --export-whatsapp | --export-imessage] [--no-compress]
494
+ [--export-signal | --export-telegram | --export-telegram-emoji | --export-telegram-telethon | --export-telegram-emoji-telethon | --export-viber | --export-whatsapp | --export-imessage]
495
+ [--no-compress]
492
496
  [--preset {auto,signal,telegram,telegram_emoji,whatsapp,line,kakao,viber,discord,discord_emoji,imessage_small,imessage_medium,imessage_large,custom}]
493
- [--steps STEPS] [--processes PROCESSES] [--fps-min FPS_MIN] [--fps-max FPS_MAX] [--fps-power FPS_POWER] [--res-min RES_MIN] [--res-max RES_MAX]
494
- [--res-w-min RES_W_MIN] [--res-w-max RES_W_MAX] [--res-h-min RES_H_MIN] [--res-h-max RES_H_MAX] [--res-power RES_POWER]
495
- [--quality-min QUALITY_MIN] [--quality-max QUALITY_MAX] [--quality-power QUALITY_POWER] [--color-min COLOR_MIN] [--color-max COLOR_MAX]
496
- [--color-power COLOR_POWER] [--duration-min DURATION_MIN] [--duration-max DURATION_MAX] [--padding-percent PADDING_PERCENT]
497
- [--bg-color BG_COLOR] [--vid-size-max VID_SIZE_MAX] [--img-size-max IMG_SIZE_MAX] [--vid-format VID_FORMAT] [--img-format IMG_FORMAT]
498
- [--fake-vid] [--scale-filter SCALE_FILTER] [--quantize-method QUANTIZE_METHOD] [--cache-dir CACHE_DIR] [--default-emoji DEFAULT_EMOJI]
499
- [--signal-uuid SIGNAL_UUID] [--signal-password SIGNAL_PASSWORD] [--signal-get-auth] [--telegram-token TELEGRAM_TOKEN]
500
- [--telegram-userid TELEGRAM_USERID] [--kakao-auth-token KAKAO_AUTH_TOKEN] [--kakao-get-auth] [--kakao-get-auth-desktop]
501
- [--kakao-bin-path KAKAO_BIN_PATH] [--kakao-username KAKAO_USERNAME] [--kakao-password KAKAO_PASSWORD] [--kakao-country-code KAKAO_COUNTRY_CODE]
502
- [--kakao-phone-number KAKAO_PHONE_NUMBER] [--line-get-auth] [--line-cookies LINE_COOKIES] [--viber-auth VIBER_AUTH]
503
- [--viber-get-auth VIBER_GET_AUTH] [--viber-bin-path VIBER_BIN_PATH] [--discord-get-auth] [--discord-token DISCORD_TOKEN] [--save-cred SAVE_CRED]
497
+ [--steps STEPS] [--processes PROCESSES] [--fps-min FPS_MIN] [--fps-max FPS_MAX]
498
+ [--fps-power FPS_POWER] [--res-min RES_MIN] [--res-max RES_MAX] [--res-w-min RES_W_MIN]
499
+ [--res-w-max RES_W_MAX] [--res-h-min RES_H_MIN] [--res-h-max RES_H_MAX] [--res-power RES_POWER]
500
+ [--quality-min QUALITY_MIN] [--quality-max QUALITY_MAX] [--quality-power QUALITY_POWER]
501
+ [--color-min COLOR_MIN] [--color-max COLOR_MAX] [--color-power COLOR_POWER]
502
+ [--duration-min DURATION_MIN] [--duration-max DURATION_MAX] [--padding-percent PADDING_PERCENT]
503
+ [--bg-color BG_COLOR] [--vid-size-max VID_SIZE_MAX] [--img-size-max IMG_SIZE_MAX]
504
+ [--vid-format VID_FORMAT] [--img-format IMG_FORMAT] [--fake-vid] [--scale-filter SCALE_FILTER]
505
+ [--quantize-method QUANTIZE_METHOD] [--cache-dir CACHE_DIR] [--default-emoji DEFAULT_EMOJI]
506
+ [--signal-uuid SIGNAL_UUID] [--signal-password SIGNAL_PASSWORD] [--signal-get-auth]
507
+ [--telegram-token TELEGRAM_TOKEN] [--telegram-userid TELEGRAM_USERID] [--telethon-setup]
508
+ [--kakao-auth-token KAKAO_AUTH_TOKEN] [--kakao-get-auth] [--kakao-get-auth-desktop]
509
+ [--kakao-bin-path KAKAO_BIN_PATH] [--kakao-username KAKAO_USERNAME]
510
+ [--kakao-password KAKAO_PASSWORD] [--kakao-country-code KAKAO_COUNTRY_CODE]
511
+ [--kakao-phone-number KAKAO_PHONE_NUMBER] [--line-get-auth] [--line-cookies LINE_COOKIES]
512
+ [--viber-auth VIBER_AUTH] [--viber-get-auth VIBER_GET_AUTH] [--viber-bin-path VIBER_BIN_PATH]
513
+ [--discord-get-auth] [--discord-token DISCORD_TOKEN] [--save-cred]
504
514
 
505
515
  CLI for stickers-convert
506
516
 
@@ -527,6 +537,10 @@ Input options:
527
537
  Download telegram stickers from a URL as input
528
538
  (Example: https://telegram.me/addstickers/xxxxx
529
539
  OR https://telegram.me/addemoji/xxxxx)
540
+ --download-telegram-telethon DOWNLOAD_TELEGRAM_TELETHON
541
+ Download telegram stickers from a URL as input with Telethon
542
+ (Example: https://telegram.me/addstickers/xxxxx
543
+ OR https://telegram.me/addemoji/xxxxx)
530
544
  --download-line DOWNLOAD_LINE
531
545
  Download line stickers from a URL / ID as input
532
546
  (Example: https://store.line.me/stickershop/product/1234/en
@@ -557,6 +571,10 @@ Output options:
557
571
  --export-telegram Upload to Telegram
558
572
  --export-telegram-emoji
559
573
  Upload to Telegram (Custom emoji)
574
+ --export-telegram-telethon
575
+ Upload to Telegram with Telethon *Not recommended, but allow link not end with _by_xxxbot*
576
+ --export-telegram-emoji-telethon
577
+ Upload to Telegram with Telethon (Custom emoji) *Not recommended, but allow link not end with _by_xxxbot*
560
578
  --export-viber Upload to Viber
561
579
  --export-whatsapp Create a .wastickers file for uploading to WhatsApp
562
580
  --export-imessage Create Xcode project for importing to iMessage
@@ -650,7 +668,8 @@ Credentials options:
650
668
  --telegram-token TELEGRAM_TOKEN
651
669
  Set Telegram token. Required for uploading and downloading Telegram stickers.
652
670
  --telegram-userid TELEGRAM_USERID
653
- Set telegram user_id (From real account, not bot account). Required for uploading Telegram stickers.
671
+ Set Telegram user_id (From real account, not bot account). Required for uploading Telegram stickers.
672
+ --telethon-setup Setup Telethon
654
673
  --kakao-auth-token KAKAO_AUTH_TOKEN
655
674
  Set Kakao auth_token. Required for downloading animated stickers from https://e.kakao.com/t/xxxxx
656
675
  --kakao-get-auth Generate Kakao auth_token by simulating login. Kakao username, password, country code and phone number are also required.
@@ -691,8 +710,7 @@ Credentials options:
691
710
  --discord-get-auth Get Discord token.
692
711
  --discord-token DISCORD_TOKEN
693
712
  Set Discord token. Required for downloading Discord stickers and emojis.
694
- --save-cred SAVE_CRED
695
- Save Signal and Telegram credentials.
713
+ --save-cred Save credentials.
696
714
  ```
697
715
 
698
716
  If you are running python script directly, run with `src/sticker-convert.py`
@@ -1,19 +1,19 @@
1
1
  sticker_convert/__init__.py,sha256=iQnv6UOOA69c3soAn7ZOnAIubTIQSUxtq1Uhh8xRWvU,102
2
2
  sticker_convert/__main__.py,sha256=elDCMvU27letiYs8jPUpxaCq5puURnvcDuqGsAAb6_w,592
3
- sticker_convert/cli.py,sha256=yI_56AfEi3Q2q8h1p8-l7wSK7wk3ktQNE_rwTAWwW1Q,20526
4
- sticker_convert/converter.py,sha256=RXH_0dQiDIj5-hARwlAmFzIF8PgLkFjkKXkQykK6MWg,36018
3
+ sticker_convert/cli.py,sha256=MWzq9QJJ7HYBD73DmSgRIPo-u58mTGEIoUUpJKNjI0Q,22358
4
+ sticker_convert/converter.py,sha256=Y2Ypvy1GjGAteLDLEXcbRXP6Z0sgdIjJk3ZssYwa1jw,36291
5
5
  sticker_convert/definitions.py,sha256=ZhP2ALCEud-w9ZZD4c3TDG9eHGPZyaAL7zPUsJAbjtE,2073
6
- sticker_convert/gui.py,sha256=IsVCXr5_6mzBgIgXtUICI3fcKu51J9WaLE9MBLrm5t4,33064
7
- sticker_convert/job.py,sha256=cedlBgL0diQ02b6yVFIgFh18nlTlc1EW55gdhLOFF2Q,27603
8
- sticker_convert/job_option.py,sha256=HgoiZs9JBjki5_fjAp8l3y3kdAWvU7FEAgtPsy4MRt0,7818
9
- sticker_convert/version.py,sha256=GvyfQl68h2ArYQz2BCdr60W5xrGMNSr_oD_y0OMQ4To,47
6
+ sticker_convert/gui.py,sha256=7nQ9yxxuTU6EiFicErXA-igVAz3-0qmevvLVHsweJF0,33656
7
+ sticker_convert/job.py,sha256=9J2a-yEqdISHUmPI1gw5CAdwmlJ9cIecJfzVU40A9VU,27617
8
+ sticker_convert/job_option.py,sha256=NysZtKVVG7EzRkLnVaeYJY0uNlYKFmjoststB1cvVrY,8020
9
+ sticker_convert/version.py,sha256=B1A0zdNjEP5npHwLfEerwv890gLeBzul8X8eOXThNYg,47
10
10
  sticker_convert/downloaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- sticker_convert/downloaders/download_base.py,sha256=Ju92bkJKW9kV_1C0aNUM3096d9B7mhcCnkx7FNfliz4,5100
11
+ sticker_convert/downloaders/download_base.py,sha256=MI5pCT_tkfoaFlrD1oNynDj1Rv1CK0APuNVElTEAEis,5110
12
12
  sticker_convert/downloaders/download_discord.py,sha256=6AFpLAYL2hRvVcsqUtzDUC31U66U02ZcnKXDnZRi2jk,3496
13
13
  sticker_convert/downloaders/download_kakao.py,sha256=qc2Ldv_zrM6H_o0dVI8Qp8xuakTNuEYPwqFfC7l_ehc,12530
14
14
  sticker_convert/downloaders/download_line.py,sha256=c-hTzEarGQP0b-pnPl29NuSKcaZWUeRo_94YpJzz72M,17911
15
- sticker_convert/downloaders/download_signal.py,sha256=qodZFh01kXZ6eRXjlyRP7c4uLXKuIXBDt2JPkT93Gu4,3125
16
- sticker_convert/downloaders/download_telegram.py,sha256=yAdhKGPupRNnO_9VPuOuztCzlP76EhZSjLF9zILjBpo,5152
15
+ sticker_convert/downloaders/download_signal.py,sha256=Ugv0ai1ZgM3kvqb295d-TCUiuogxb41pprOdDtknIpg,3196
16
+ sticker_convert/downloaders/download_telegram.py,sha256=iGmOcVjU2Ai19t1lyDY2JhQIc--O5XMyNCGXZAA4DVY,2028
17
17
  sticker_convert/downloaders/download_viber.py,sha256=SKWyrd2E2QH3aOvMJT2YEVLiCU-jqC-S4hKIrdFvG34,3161
18
18
  sticker_convert/gui_components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
19
  sticker_convert/gui_components/gui_utils.py,sha256=okho2cA1Scem_m6rPiYifreFzpFrM21-yUkiAv64EUI,3431
@@ -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=cfNUuJKy1h0fprZwo7pbaTswTVKnJQFt9K5nexeZCRo,8603
24
+ sticker_convert/gui_components/frames/cred_frame.py,sha256=pQldn05cIgxK_pE899DgxMOe56KN9MTteDF-L6-DquI,9646
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
@@ -70,44 +70,46 @@ sticker_convert/resources/NotoColorEmoji.ttf,sha256=LurIVaCIA8bSCfjrdO1feYr0bhKL
70
70
  sticker_convert/resources/appicon.icns,sha256=FB2DVTOQcFfQNZ9RcyG3z9c9k7eOiI1qw0IJhXMRFg4,5404
71
71
  sticker_convert/resources/appicon.ico,sha256=-ldugcl2Yq2pBRTktnhGKWInpKyWzRjCiPvMr3XPTlc,38078
72
72
  sticker_convert/resources/appicon.png,sha256=6XBEQz7PnerqS43aRkwpWolFG4WvKMuQ-st1ly-_JPg,5265
73
- sticker_convert/resources/compression.json,sha256=PocqDcmQ9VMPPU6HmbUGfPv6RVKMapfedoBX2Aupne0,14184
73
+ sticker_convert/resources/compression.json,sha256=hZY906wUmdAuflVhUowm9EW6h40BzuD4LBNe-Mpd9V8,14184
74
74
  sticker_convert/resources/emoji.json,sha256=sXSuKusyG1L2Stuf9BL5ZqfzOIOdeAeE3RXcrXAsLdY,413367
75
- sticker_convert/resources/help.json,sha256=ntzjF9fl9ExlIRR7mLEyR5JLULqUvPEm5Z7T5DL8ucs,7201
76
- sticker_convert/resources/input.json,sha256=1YfoqnXwUiynDZRxpyhyYSQGYR3bO8WJb_-NS1JGVBY,3476
75
+ sticker_convert/resources/help.json,sha256=oI8OIB0aFKgDw4bTKT69zDNshOjf0-bM5el3nbJTzMs,7225
76
+ sticker_convert/resources/input.json,sha256=NUyIpOGPtP_goDi8FwmbJPuCyLYtDDy83vTpzz5lnb0,3895
77
77
  sticker_convert/resources/memdump_linux.sh,sha256=YbdX5C5RyCnoeDUE6JgTo8nQXKhrUw5-kFDx5bQp9tY,651
78
78
  sticker_convert/resources/memdump_windows.ps1,sha256=CfyNSSEW3HJOkTu-mKrP3qh5aprN-1VCBfj-R1fELA0,302
79
- sticker_convert/resources/output.json,sha256=V4OseXEm3O16cAjHDVZRq8-SY-0_7cFFR_cyF-0Y_eQ,1570
79
+ sticker_convert/resources/output.json,sha256=SC_3vtEBJ79R7q0vy_p33eLsGFEyBsSOai0Hy7mLqG8,2208
80
80
  sticker_convert/uploaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
81
- sticker_convert/uploaders/compress_wastickers.py,sha256=JrXlMflJ5HGKSEXLHysxcFtDaXJSDfn9f0S3wftHbz4,6140
81
+ sticker_convert/uploaders/compress_wastickers.py,sha256=Rgl3WzIDJn7oa00nNqeBFDqIHP-cWvgQqET2-kDbf9c,7417
82
82
  sticker_convert/uploaders/upload_base.py,sha256=uQupPn6r4zrlAzpKzzX7CgvZb69ATyrwPKahWOQj0ds,1203
83
83
  sticker_convert/uploaders/upload_signal.py,sha256=Qhay8HS3b9J7DGETcLtNg9kV16BGoSgYC5cX5wJd0ew,6674
84
- sticker_convert/uploaders/upload_telegram.py,sha256=I7R-WtwDVpcLsYMmWydqUJb1nVFibvkv-ILhh147-mw,15686
85
- sticker_convert/uploaders/upload_viber.py,sha256=CsFzKQj-olC-xpNLhZxTpg8njs_FDhAk75YpoIFlPGI,6390
84
+ sticker_convert/uploaders/upload_telegram.py,sha256=WlUyLJlW83XZz6RhA76jHMXA6TNUIEVbPwhi14RTnds,12482
85
+ sticker_convert/uploaders/upload_viber.py,sha256=kRvZZCv5WcalOJvz9Mdl2yqi3L5n4joovA39WMWn4qs,6420
86
86
  sticker_convert/uploaders/xcode_imessage.py,sha256=iTTT8gDYOTNkKqXeSWUBuWfxu7xeE418t2Z1YQFR5L0,11365
87
87
  sticker_convert/utils/callback.py,sha256=spYUGlklOs1yPZAxoqwOWgR1sdimpfM8a27if3TaVYk,6155
88
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
- sticker_convert/utils/url_detect.py,sha256=LTzHIHOD-L-nBE4WZEW3t0qFi1ABAegSZxLdURrPH2o,906
91
+ sticker_convert/utils/url_detect.py,sha256=bgW7tM3_j8zv4uKPPhyyOkYoNdljUdqDkbyBMqAZoEI,947
92
92
  sticker_convert/utils/auth/get_discord_auth.py,sha256=i5SaXU9Ly6Ci_iBYCYIPcQB5FaAehi9DidB4jbKJMVg,4215
93
93
  sticker_convert/utils/auth/get_kakao_auth.py,sha256=ipAZ1DUd5CMTpUoxRXHVOFC3DKIpxwxpTYAfrOJ6UZ8,9829
94
94
  sticker_convert/utils/auth/get_kakao_desktop_auth.py,sha256=VbEec-yujlLJOBeM55Rm5deu4YE9G9Oi_AKTwOsmUMg,5815
95
95
  sticker_convert/utils/auth/get_line_auth.py,sha256=8l8ha2vQmk3rHGvDE7PkcxQXbH3oe62LKbI3qVUtvqc,2196
96
96
  sticker_convert/utils/auth/get_signal_auth.py,sha256=9L9kqpfJ4j9B10nJ8iLFKolPd6r_8TsGUDxCpTLR43o,4306
97
97
  sticker_convert/utils/auth/get_viber_auth.py,sha256=mUTrcxq5bTrzSXEVaeTPqVQIdZdwvIhrbMgBUb7dU30,8173
98
+ sticker_convert/utils/auth/telegram_api.py,sha256=WQi3dat8IZy13nXfyDS25XTS3HKp5BhVzgHimgbPnmw,24169
99
+ sticker_convert/utils/auth/telethon_setup.py,sha256=3hH0KglsotFBxT3gwFjHiDuREyahFIlmx-ZL1_-zM2A,2714
98
100
  sticker_convert/utils/files/cache_store.py,sha256=etfe614OAhAyrnM5fGeESKq6R88YLNqkqkxSzEmZ0V0,1047
99
101
  sticker_convert/utils/files/json_manager.py,sha256=Vr6pZJdLMkrJJWN99210aduVHb0ILyf0SSTaw4TZqgc,541
100
102
  sticker_convert/utils/files/json_resources_loader.py,sha256=flZFixUXRTrOAhvRQpuSQgmJ69yXL94sxukcowLT1JQ,1049
101
- sticker_convert/utils/files/metadata_handler.py,sha256=KDwzCwSckTob2VacOvzLdu1256WLicmzXgkhfFvRBzo,10108
103
+ sticker_convert/utils/files/metadata_handler.py,sha256=UNCfsbAmN-s4LhMUGlAj-CVCsoDCv4BaP5yQG7R81Jk,10108
102
104
  sticker_convert/utils/files/run_bin.py,sha256=C_KKGtMUTajJnKo4Ia9e6WuWCXSQRdGsVPG-r5GXT_I,1784
103
105
  sticker_convert/utils/files/sanitize_filename.py,sha256=HBklPGsHRJjFQUIC5rYTQsUrsuTtezZXIEA8CPhLP8A,2156
104
106
  sticker_convert/utils/media/apple_png_normalize.py,sha256=LbrQhc7LlYX4I9ek4XJsZE4l0MygBA1jB-PFiYLEkzk,3657
105
107
  sticker_convert/utils/media/codec_info.py,sha256=XoEWBfPWTzr4zSVQIU1XF1yh5viHxH5FytNEpdZR38c,14874
106
108
  sticker_convert/utils/media/decrypt_kakao.py,sha256=4wq9ZDRnFkx1WmFZnyEogBofiLGsWQM_X69HlA36578,1947
107
109
  sticker_convert/utils/media/format_verify.py,sha256=oM32P186tWe9YxvBQRPr8D3FEmBN3b2rEe_2S_MwxyQ,6236
108
- sticker_convert-2.10.9.dist-info/LICENSE,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
109
- sticker_convert-2.10.9.dist-info/METADATA,sha256=BuRt6ZgLkvU08x0GlYJgKIppfX9ohcdQDM0AhUt1jGc,52489
110
- sticker_convert-2.10.9.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
111
- sticker_convert-2.10.9.dist-info/entry_points.txt,sha256=MNJ7XyC--ugxi5jS1nzjDLGnxCyLuaGdsVLnJhDHCqs,66
112
- sticker_convert-2.10.9.dist-info/top_level.txt,sha256=r9vfnB0l1ZnH5pTH5RvkobnK3Ow9m0RsncaOMAtiAtk,16
113
- sticker_convert-2.10.9.dist-info/RECORD,,
110
+ sticker_convert-2.11.1.dist-info/LICENSE,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
111
+ sticker_convert-2.11.1.dist-info/METADATA,sha256=KIoxhhqLPn8bsyfpwTptU5l0hxAKsEQYMjUIBvpHZhY,53575
112
+ sticker_convert-2.11.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
113
+ sticker_convert-2.11.1.dist-info/entry_points.txt,sha256=MNJ7XyC--ugxi5jS1nzjDLGnxCyLuaGdsVLnJhDHCqs,66
114
+ sticker_convert-2.11.1.dist-info/top_level.txt,sha256=r9vfnB0l1ZnH5pTH5RvkobnK3Ow9m0RsncaOMAtiAtk,16
115
+ sticker_convert-2.11.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.6.0)
2
+ Generator: setuptools (75.8.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5