sticker-convert 2.10.8__py3-none-any.whl → 2.11.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- sticker_convert/cli.py +39 -1
- sticker_convert/converter.py +10 -6
- sticker_convert/downloaders/download_base.py +37 -17
- sticker_convert/downloaders/download_discord.py +6 -6
- sticker_convert/downloaders/download_kakao.py +31 -13
- sticker_convert/downloaders/download_line.py +6 -6
- sticker_convert/downloaders/download_signal.py +10 -8
- sticker_convert/downloaders/download_telegram.py +22 -96
- sticker_convert/downloaders/download_viber.py +8 -6
- sticker_convert/gui.py +12 -0
- sticker_convert/gui_components/frames/cred_frame.py +38 -13
- sticker_convert/job.py +84 -63
- sticker_convert/job_option.py +6 -0
- sticker_convert/resources/compression.json +2 -2
- sticker_convert/resources/help.json +3 -2
- sticker_convert/resources/input.json +10 -0
- sticker_convert/resources/output.json +16 -0
- sticker_convert/uploaders/compress_wastickers.py +8 -6
- sticker_convert/uploaders/upload_signal.py +10 -6
- sticker_convert/uploaders/upload_telegram.py +178 -231
- sticker_convert/uploaders/upload_viber.py +12 -8
- sticker_convert/uploaders/xcode_imessage.py +8 -6
- sticker_convert/utils/auth/telegram_api.py +668 -0
- sticker_convert/utils/auth/telethon_setup.py +79 -0
- sticker_convert/utils/url_detect.py +1 -1
- sticker_convert/version.py +1 -1
- {sticker_convert-2.10.8.dist-info → sticker_convert-2.11.0.dist-info}/METADATA +54 -36
- {sticker_convert-2.10.8.dist-info → sticker_convert-2.11.0.dist-info}/RECORD +32 -30
- {sticker_convert-2.10.8.dist-info → sticker_convert-2.11.0.dist-info}/LICENSE +0 -0
- {sticker_convert-2.10.8.dist-info → sticker_convert-2.11.0.dist-info}/WHEEL +0 -0
- {sticker_convert-2.10.8.dist-info → sticker_convert-2.11.0.dist-info}/entry_points.txt +0 -0
- {sticker_convert-2.10.8.dist-info → sticker_convert-2.11.0.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()
|
sticker_convert/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: sticker-convert
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.11.0
|
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>
|
@@ -363,26 +363,28 @@ Classifier: Programming Language :: Python :: 3 :: Only
|
|
363
363
|
Requires-Python: >=3.9
|
364
364
|
Description-Content-Type: text/markdown
|
365
365
|
License-File: LICENSE
|
366
|
-
Requires-Dist: aiolimiter~=1.2.
|
367
|
-
Requires-Dist: anyio~=4.
|
366
|
+
Requires-Dist: aiolimiter~=1.2.1
|
367
|
+
Requires-Dist: anyio~=4.7.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
|
-
Requires-Dist: httpx~=0.28.
|
373
|
+
Requires-Dist: httpx~=0.28.1
|
373
374
|
Requires-Dist: imagequant~=1.1.3
|
374
375
|
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~=
|
379
|
+
Requires-Dist: Pillow~=10.4.0
|
379
380
|
Requires-Dist: pyoxipng~=9.0.0
|
380
|
-
Requires-Dist: python-telegram-bot~=21.
|
381
|
-
Requires-Dist: psutil~=6.1.
|
381
|
+
Requires-Dist: python-telegram-bot~=21.9
|
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`)
|
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]
|
489
|
-
[--
|
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]
|
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]
|
494
|
-
[--
|
495
|
-
[--
|
496
|
-
[--
|
497
|
-
[--
|
498
|
-
[--
|
499
|
-
[--
|
500
|
-
[--
|
501
|
-
[--
|
502
|
-
[--
|
503
|
-
[--
|
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
|
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
|
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,27 +1,27 @@
|
|
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=
|
4
|
-
sticker_convert/converter.py,sha256=
|
3
|
+
sticker_convert/cli.py,sha256=t6-7q4umAtiG2zVPkZ83LuEtpmCx4GSfzmeHrSP09N4,22358
|
4
|
+
sticker_convert/converter.py,sha256=1q0xsIaPlrigk7QS0apYPb7q6XVn8K9Vmm33NBCaDS4,36230
|
5
5
|
sticker_convert/definitions.py,sha256=ZhP2ALCEud-w9ZZD4c3TDG9eHGPZyaAL7zPUsJAbjtE,2073
|
6
|
-
sticker_convert/gui.py,sha256=
|
7
|
-
sticker_convert/job.py,sha256=
|
8
|
-
sticker_convert/job_option.py,sha256=
|
9
|
-
sticker_convert/version.py,sha256=
|
6
|
+
sticker_convert/gui.py,sha256=7nQ9yxxuTU6EiFicErXA-igVAz3-0qmevvLVHsweJF0,33656
|
7
|
+
sticker_convert/job.py,sha256=TS2kjYsHe3kXiPAcHWqZVg9VxpECP6eHa_uUwTWhuL8,27617
|
8
|
+
sticker_convert/job_option.py,sha256=NysZtKVVG7EzRkLnVaeYJY0uNlYKFmjoststB1cvVrY,8020
|
9
|
+
sticker_convert/version.py,sha256=UnmK32p96-2XKeR1FrK6i-20wgaWMTTRMqiJe64PsnY,47
|
10
10
|
sticker_convert/downloaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
|
-
sticker_convert/downloaders/download_base.py,sha256=
|
12
|
-
sticker_convert/downloaders/download_discord.py,sha256=
|
13
|
-
sticker_convert/downloaders/download_kakao.py,sha256=
|
14
|
-
sticker_convert/downloaders/download_line.py,sha256=
|
15
|
-
sticker_convert/downloaders/download_signal.py,sha256=
|
16
|
-
sticker_convert/downloaders/download_telegram.py,sha256=
|
17
|
-
sticker_convert/downloaders/download_viber.py,sha256=
|
11
|
+
sticker_convert/downloaders/download_base.py,sha256=KnCPYlkQNlnjzI6zpaax-F2B7iOaPk0eX0RGftnSAGA,5106
|
12
|
+
sticker_convert/downloaders/download_discord.py,sha256=6AFpLAYL2hRvVcsqUtzDUC31U66U02ZcnKXDnZRi2jk,3496
|
13
|
+
sticker_convert/downloaders/download_kakao.py,sha256=qc2Ldv_zrM6H_o0dVI8Qp8xuakTNuEYPwqFfC7l_ehc,12530
|
14
|
+
sticker_convert/downloaders/download_line.py,sha256=c-hTzEarGQP0b-pnPl29NuSKcaZWUeRo_94YpJzz72M,17911
|
15
|
+
sticker_convert/downloaders/download_signal.py,sha256=Ugv0ai1ZgM3kvqb295d-TCUiuogxb41pprOdDtknIpg,3196
|
16
|
+
sticker_convert/downloaders/download_telegram.py,sha256=iGmOcVjU2Ai19t1lyDY2JhQIc--O5XMyNCGXZAA4DVY,2028
|
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
|
20
20
|
sticker_convert/gui_components/frames/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
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=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,31 +70,33 @@ 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=
|
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=
|
76
|
-
sticker_convert/resources/input.json,sha256=
|
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=
|
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=
|
81
|
+
sticker_convert/uploaders/compress_wastickers.py,sha256=JrXlMflJ5HGKSEXLHysxcFtDaXJSDfn9f0S3wftHbz4,6140
|
82
82
|
sticker_convert/uploaders/upload_base.py,sha256=uQupPn6r4zrlAzpKzzX7CgvZb69ATyrwPKahWOQj0ds,1203
|
83
|
-
sticker_convert/uploaders/upload_signal.py,sha256=
|
84
|
-
sticker_convert/uploaders/upload_telegram.py,sha256=
|
85
|
-
sticker_convert/uploaders/upload_viber.py,sha256=
|
86
|
-
sticker_convert/uploaders/xcode_imessage.py,sha256=
|
83
|
+
sticker_convert/uploaders/upload_signal.py,sha256=Qhay8HS3b9J7DGETcLtNg9kV16BGoSgYC5cX5wJd0ew,6674
|
84
|
+
sticker_convert/uploaders/upload_telegram.py,sha256=WlUyLJlW83XZz6RhA76jHMXA6TNUIEVbPwhi14RTnds,12482
|
85
|
+
sticker_convert/uploaders/upload_viber.py,sha256=CsFzKQj-olC-xpNLhZxTpg8njs_FDhAk75YpoIFlPGI,6390
|
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=
|
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=YrMBEQ7MpLBCYYId8B2D7E7Kh9e8qBGhh-6JHFD8m0c,23975
|
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
|
@@ -105,9 +107,9 @@ sticker_convert/utils/media/apple_png_normalize.py,sha256=LbrQhc7LlYX4I9ek4XJsZE
|
|
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.
|
109
|
-
sticker_convert-2.
|
110
|
-
sticker_convert-2.
|
111
|
-
sticker_convert-2.
|
112
|
-
sticker_convert-2.
|
113
|
-
sticker_convert-2.
|
110
|
+
sticker_convert-2.11.0.dist-info/LICENSE,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
111
|
+
sticker_convert-2.11.0.dist-info/METADATA,sha256=I7ZPRQ5yiV_hOEvVLbo-iDKkoXATolWvrk5yoxTGMWQ,53574
|
112
|
+
sticker_convert-2.11.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
113
|
+
sticker_convert-2.11.0.dist-info/entry_points.txt,sha256=MNJ7XyC--ugxi5jS1nzjDLGnxCyLuaGdsVLnJhDHCqs,66
|
114
|
+
sticker_convert-2.11.0.dist-info/top_level.txt,sha256=r9vfnB0l1ZnH5pTH5RvkobnK3Ow9m0RsncaOMAtiAtk,16
|
115
|
+
sticker_convert-2.11.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|