sticker-convert 2.13.1.0__tar.gz → 2.13.2.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.
Files changed (132) hide show
  1. {sticker_convert-2.13.1.0/src/sticker_convert.egg-info → sticker_convert-2.13.2.0}/PKG-INFO +14 -7
  2. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/README.md +12 -5
  3. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/requirements.txt +1 -1
  4. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/cli.py +1 -0
  5. sticker_convert-2.13.2.0/src/sticker_convert/downloaders/download_ogq.py +79 -0
  6. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/job.py +4 -0
  7. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/resources/compression.json +47 -0
  8. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/resources/input.json +10 -0
  9. sticker_convert-2.13.2.0/src/sticker_convert/version.py +3 -0
  10. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0/src/sticker_convert.egg-info}/PKG-INFO +14 -7
  11. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert.egg-info/SOURCES.txt +1 -0
  12. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert.egg-info/requires.txt +1 -1
  13. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/tests/test_download.py +28 -0
  14. sticker_convert-2.13.1.0/src/sticker_convert/version.py +0 -3
  15. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/LICENSE +0 -0
  16. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/MANIFEST.in +0 -0
  17. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/pyproject.toml +0 -0
  18. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/setup.cfg +0 -0
  19. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/__init__.py +0 -0
  20. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/__main__.py +0 -0
  21. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/converter.py +0 -0
  22. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/definitions.py +0 -0
  23. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/downloaders/__init__.py +0 -0
  24. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/downloaders/download_band.py +0 -0
  25. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/downloaders/download_base.py +0 -0
  26. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/downloaders/download_discord.py +0 -0
  27. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/downloaders/download_kakao.py +0 -0
  28. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/downloaders/download_line.py +0 -0
  29. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/downloaders/download_signal.py +0 -0
  30. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/downloaders/download_telegram.py +0 -0
  31. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/downloaders/download_viber.py +0 -0
  32. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/gui.py +0 -0
  33. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/gui_components/__init__.py +0 -0
  34. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/gui_components/frames/__init__.py +0 -0
  35. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/gui_components/frames/comp_frame.py +0 -0
  36. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/gui_components/frames/config_frame.py +0 -0
  37. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/gui_components/frames/control_frame.py +0 -0
  38. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/gui_components/frames/cred_frame.py +0 -0
  39. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/gui_components/frames/input_frame.py +0 -0
  40. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/gui_components/frames/output_frame.py +0 -0
  41. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/gui_components/frames/progress_frame.py +0 -0
  42. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/gui_components/frames/right_clicker.py +0 -0
  43. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/gui_components/gui_utils.py +0 -0
  44. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/gui_components/windows/__init__.py +0 -0
  45. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/gui_components/windows/advanced_compression_window.py +0 -0
  46. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/gui_components/windows/base_window.py +0 -0
  47. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/gui_components/windows/discord_get_auth_window.py +0 -0
  48. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/gui_components/windows/kakao_get_auth_window.py +0 -0
  49. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/gui_components/windows/line_get_auth_window.py +0 -0
  50. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/gui_components/windows/signal_get_auth_window.py +0 -0
  51. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/gui_components/windows/viber_get_auth_window.py +0 -0
  52. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/.github/FUNDING.yml +0 -0
  53. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/.gitignore +0 -0
  54. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/README.md +0 -0
  55. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers/Info.plist +0 -0
  56. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Info.plist +0 -0
  57. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/Contents.json +0 -0
  58. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/Sticker Pack.stickerpack/Contents.json +0 -0
  59. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/Sticker Pack.stickerpack/Sticker 1.sticker/Contents.json +0 -0
  60. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/Sticker Pack.stickerpack/Sticker 1.sticker/Sticker 1.png +0 -0
  61. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/Sticker Pack.stickerpack/Sticker 2.sticker/Contents.json +0 -0
  62. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/Sticker Pack.stickerpack/Sticker 2.sticker/Sticker 2.png +0 -0
  63. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/Sticker Pack.stickerpack/Sticker 3.sticker/Contents.json +0 -0
  64. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/Sticker Pack.stickerpack/Sticker 3.sticker/Sticker 3.png +0 -0
  65. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/iMessage App Icon.stickersiconset/App-Store-1024x1024pt.png +0 -0
  66. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/iMessage App Icon.stickersiconset/Contents.json +0 -0
  67. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/iMessage App Icon.stickersiconset/Messages-App-Store-1024x768pt.png +0 -0
  68. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/iMessage App Icon.stickersiconset/Messages-iPad-67x50pt@2x.png +0 -0
  69. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/iMessage App Icon.stickersiconset/Messages-iPad-Pro-74x55pt@2x.png +0 -0
  70. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/iMessage App Icon.stickersiconset/Messages-iPhone-60x45pt@2x.png +0 -0
  71. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/iMessage App Icon.stickersiconset/Messages-iPhone-60x45pt@3x.png +0 -0
  72. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/iMessage App Icon.stickersiconset/Messages27x20pt@2x.png +0 -0
  73. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/iMessage App Icon.stickersiconset/Messages27x20pt@3x.png +0 -0
  74. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/iMessage App Icon.stickersiconset/Messages32x24pt@2x.png +0 -0
  75. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/iMessage App Icon.stickersiconset/Messages32x24pt@3x.png +0 -0
  76. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/iMessage App Icon.stickersiconset/iPad-Settings-29pt@2x.png +0 -0
  77. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/iMessage App Icon.stickersiconset/iPhone-Settings-29pt@3x.png +0 -0
  78. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/iMessage App Icon.stickersiconset/iPhone-settings-29pt@2x.png +0 -0
  79. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers.xcodeproj/project.pbxproj +0 -0
  80. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -0
  81. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -0
  82. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers.xcodeproj/project.xcworkspace/xcuserdata/niklaspeterson.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  83. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/ios-message-stickers-template/stickers.xcodeproj/xcuserdata/niklaspeterson.xcuserdatad/xcschemes/xcschememanagement.plist +0 -0
  84. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/job_option.py +0 -0
  85. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/resources/NotoColorEmoji.ttf +0 -0
  86. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/resources/appicon.icns +0 -0
  87. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/resources/appicon.ico +0 -0
  88. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/resources/appicon.png +0 -0
  89. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/resources/emoji.json +0 -0
  90. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/resources/help.json +0 -0
  91. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/resources/memdump_linux.sh +0 -0
  92. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/resources/memdump_windows.ps1 +0 -0
  93. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/resources/output.json +0 -0
  94. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/uploaders/__init__.py +0 -0
  95. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/uploaders/compress_wastickers.py +0 -0
  96. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/uploaders/upload_base.py +0 -0
  97. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/uploaders/upload_signal.py +0 -0
  98. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/uploaders/upload_telegram.py +0 -0
  99. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/uploaders/upload_viber.py +0 -0
  100. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/uploaders/xcode_imessage.py +0 -0
  101. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/auth/get_discord_auth.py +0 -0
  102. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/auth/get_kakao_auth.py +0 -0
  103. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/auth/get_kakao_desktop_auth.py +0 -0
  104. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/auth/get_line_auth.py +0 -0
  105. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/auth/get_signal_auth.py +0 -0
  106. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/auth/get_viber_auth.py +0 -0
  107. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/auth/telegram_api.py +0 -0
  108. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/auth/telethon_setup.py +0 -0
  109. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/callback.py +0 -0
  110. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/chrome_remotedebug.py +0 -0
  111. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/chromiums/linux.py +0 -0
  112. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/chromiums/osx.py +0 -0
  113. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/chromiums/windows.py +0 -0
  114. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/emoji.py +0 -0
  115. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/files/cache_store.py +0 -0
  116. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/files/json_manager.py +0 -0
  117. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/files/json_resources_loader.py +0 -0
  118. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/files/metadata_handler.py +0 -0
  119. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/files/run_bin.py +0 -0
  120. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/files/sanitize_filename.py +0 -0
  121. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/media/apple_png_normalize.py +0 -0
  122. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/media/codec_info.py +0 -0
  123. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/media/decrypt_kakao.py +0 -0
  124. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/media/format_verify.py +0 -0
  125. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/process.py +0 -0
  126. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/singletons.py +0 -0
  127. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert/utils/url_detect.py +0 -0
  128. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert.egg-info/dependency_links.txt +0 -0
  129. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert.egg-info/entry_points.txt +0 -0
  130. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/src/sticker_convert.egg-info/top_level.txt +0 -0
  131. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/tests/test_compression.py +0 -0
  132. {sticker_convert-2.13.1.0 → sticker_convert-2.13.2.0}/tests/test_export.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sticker-convert
3
- Version: 2.13.1.0
3
+ Version: 2.13.2.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>
@@ -380,7 +380,7 @@ Requires-Dist: pyoxipng~=9.1.0
380
380
  Requires-Dist: python-telegram-bot~=22.1
381
381
  Requires-Dist: psutil~=7.0.0
382
382
  Requires-Dist: PyMemoryEditor~=1.5.22
383
- Requires-Dist: requests~=2.32.3
383
+ Requires-Dist: requests~=2.32.4
384
384
  Requires-Dist: rlottie_python~=1.3.7
385
385
  Requires-Dist: signalstickers-client-fork-laggykiller~=3.3.0.post2
386
386
  Requires-Dist: socksio~=1.0.0
@@ -396,7 +396,7 @@ Dynamic: license-file
396
396
 
397
397
  - A python script for creating, downloading, converting+compressing and uploading stickers from multiple instant messaging applications.
398
398
  - With GUI and CLI that runs on Windows, MacOS and Linux
399
- - Currently supports Signal, Telegram, WhatsApp (Create .wastickers), Line (Download only), Kakao (Download only), Naver Band (Download only), Viber, Discord (Download only), iMessage (Create Xcode sticker pack project)
399
+ - Currently supports Signal, Telegram, WhatsApp (Create .wastickers), Line (Download only), Kakao (Download only), Naver Band (Download only), OGQ (Download only), Viber, Discord (Download only), iMessage (Create Xcode sticker pack project)
400
400
  - Supports static and animated stickers, with transparency support
401
401
 
402
402
  ## Downloads
@@ -438,6 +438,7 @@ Dynamic: license-file
438
438
  | [Line](docs/guide_line.md) | ✅ | 🚫 (Need to submit for manual approval) |
439
439
  | [Kakao](docs/guide_kakao.md) | ✅ (Need 'auth_token' for animated) | 🚫 (Need to submit for manual approval) |
440
440
  | [Band](docs/guide_band.md) | ✅ | 🚫 (Need to submit for manual approval) |
441
+ | [OGQ](docs/guide_ogq.md) | ✅ | 🚫 (Need to submit for manual approval) |
441
442
  | [Viber](docs/guide_viber.md) | ✅ | ✅ (Require `viber_auth`) |
442
443
  | [Discord](docs/guide_discord.md) | ✅ (Require `token`) | 🚫 |
443
444
  | [iMessage](docs/guide_imessage.md) | 🚫 | ⭕ (Create Xcode stickerpack project for sideload) |
@@ -467,6 +468,9 @@ Dynamic: license-file
467
468
  - Band
468
469
  - Download: Supported (e.g. `https://www.band.us/sticker/xxxx` OR 2535). Learn how to get share link from [docs/guide_band.md](docs/guide_band.md)
469
470
  - Upload: Not supported. You need to manually submit sticker pack for approval before you can use in app.
471
+ - OGQ
472
+ - Download: Supported (e.g. `https://ogqmarket.naver.com/artworks/sticker/detail?artworkId=xxxxx`)
473
+ - Upload: Not supported. You need to manually submit sticker pack for approval before you can use in app.
470
474
  - Viber
471
475
  - Download: Supported (e.g. `https://stickers.viber.com/pages/example` OR `https://stickers.viber.com/pages/custom-sticker-packs/example`)
472
476
  - Upload: Supported. Viber authentication data required for uploading Viber stickers, which could be fetched from Viber Desktop application automatically.
@@ -494,11 +498,11 @@ To run in CLI mode, pass on any arguments
494
498
 
495
499
  ```
496
500
  usage: sticker-convert.py [-h] [--version] [--no-confirm] [--no-progress] [--custom-presets CUSTOM_PRESETS] [--input-dir INPUT_DIR]
497
- [--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-band DOWNLOAD_BAND | --download-viber DOWNLOAD_VIBER | --download-discord DOWNLOAD_DISCORD | --download-discord-emoji DOWNLOAD_DISCORD_EMOJI]
501
+ [--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-band DOWNLOAD_BAND | --download-ogq DOWNLOAD_OGQ | --download-viber DOWNLOAD_VIBER | --download-discord DOWNLOAD_DISCORD | --download-discord-emoji DOWNLOAD_DISCORD_EMOJI]
498
502
  [--output-dir OUTPUT_DIR] [--author AUTHOR] [--title TITLE]
499
503
  [--export-signal | --export-telegram | --export-telegram-emoji | --export-telegram-telethon | --export-telegram-emoji-telethon | --export-viber | --export-whatsapp | --export-imessage]
500
504
  [--no-compress]
501
- [--preset {auto,signal,telegram,telegram_emoji,whatsapp,line,kakao,viber,discord,discord_emoji,imessage_small,imessage_medium,imessage_large,custom}]
505
+ [--preset {auto,signal,telegram,telegram_emoji,whatsapp,line,kakao,band,ogq,viber,discord,discord_emoji,imessage_small,imessage_medium,imessage_large,custom}]
502
506
  [--steps STEPS] [--processes PROCESSES] [--fps-min FPS_MIN] [--fps-max FPS_MAX] [--fps-power FPS_POWER]
503
507
  [--res-min RES_MIN] [--res-max RES_MAX] [--res-w-min RES_W_MIN] [--res-w-max RES_W_MAX] [--res-h-min RES_H_MIN]
504
508
  [--res-h-max RES_H_MAX] [--res-power RES_POWER] [--quality-min QUALITY_MIN] [--quality-max QUALITY_MAX]
@@ -555,6 +559,9 @@ Input options:
555
559
  --download-band DOWNLOAD_BAND
556
560
  Download Naver Band stickers from a URL / ID as input
557
561
  (Example: https://www.band.us/sticker/xxxx OR 2535)
562
+ --download-ogq DOWNLOAD_OGQ
563
+ Download OGQ stickers from a URL / ID as input
564
+ (Example: https://ogqmarket.naver.com/artworks/sticker/detail?artworkId=xxxxx)
558
565
  --download-viber DOWNLOAD_VIBER
559
566
  Download viber stickers from a URL as input
560
567
  (Example: https://stickers.viber.com/pages/example
@@ -587,7 +594,7 @@ Output options:
587
594
 
588
595
  Compression options:
589
596
  --no-compress Do not compress files. Useful for only downloading stickers.
590
- --preset {auto,signal,telegram,telegram_emoji,whatsapp,line,kakao,viber,discord,discord_emoji,imessage_small,imessage_medium,imessage_large,custom}
597
+ --preset {auto,signal,telegram,telegram_emoji,whatsapp,line,kakao,band,ogq,viber,discord,discord_emoji,imessage_small,imessage_medium,imessage_large,custom}
591
598
  Apply preset for compression.
592
599
  --steps STEPS Set number of divisions between min and max settings.
593
600
  Steps higher = Slower but yields file more closer to the specified file size limit.
@@ -893,5 +900,5 @@ See [docs/TODO.md](docs/TODO.md)
893
900
  - Free code signing on Windows provided by [SignPath.io](https://about.signpath.io/), certificate by [SignPath Foundation](https://signpath.org/)
894
901
 
895
902
  ## DISCLAIMER
896
- - The author of this repo is NOT affiliated with Signal, Telegram, WhatsApp, Line, Kakao, Naver Band, Viber, Discord, iMessage or Sticker Maker.
903
+ - The author of this repo is NOT affiliated with Signal, Telegram, WhatsApp, Line, Kakao, Naver Band, OGQ, Viber, Discord, iMessage or Sticker Maker.
897
904
  - The author of this repo is NOT repsonsible for any legal consequences and loss incurred from using this repo.
@@ -4,7 +4,7 @@
4
4
 
5
5
  - A python script for creating, downloading, converting+compressing and uploading stickers from multiple instant messaging applications.
6
6
  - With GUI and CLI that runs on Windows, MacOS and Linux
7
- - Currently supports Signal, Telegram, WhatsApp (Create .wastickers), Line (Download only), Kakao (Download only), Naver Band (Download only), Viber, Discord (Download only), iMessage (Create Xcode sticker pack project)
7
+ - Currently supports Signal, Telegram, WhatsApp (Create .wastickers), Line (Download only), Kakao (Download only), Naver Band (Download only), OGQ (Download only), Viber, Discord (Download only), iMessage (Create Xcode sticker pack project)
8
8
  - Supports static and animated stickers, with transparency support
9
9
 
10
10
  ## Downloads
@@ -46,6 +46,7 @@
46
46
  | [Line](docs/guide_line.md) | ✅ | 🚫 (Need to submit for manual approval) |
47
47
  | [Kakao](docs/guide_kakao.md) | ✅ (Need 'auth_token' for animated) | 🚫 (Need to submit for manual approval) |
48
48
  | [Band](docs/guide_band.md) | ✅ | 🚫 (Need to submit for manual approval) |
49
+ | [OGQ](docs/guide_ogq.md) | ✅ | 🚫 (Need to submit for manual approval) |
49
50
  | [Viber](docs/guide_viber.md) | ✅ | ✅ (Require `viber_auth`) |
50
51
  | [Discord](docs/guide_discord.md) | ✅ (Require `token`) | 🚫 |
51
52
  | [iMessage](docs/guide_imessage.md) | 🚫 | ⭕ (Create Xcode stickerpack project for sideload) |
@@ -75,6 +76,9 @@
75
76
  - Band
76
77
  - Download: Supported (e.g. `https://www.band.us/sticker/xxxx` OR 2535). Learn how to get share link from [docs/guide_band.md](docs/guide_band.md)
77
78
  - Upload: Not supported. You need to manually submit sticker pack for approval before you can use in app.
79
+ - OGQ
80
+ - Download: Supported (e.g. `https://ogqmarket.naver.com/artworks/sticker/detail?artworkId=xxxxx`)
81
+ - Upload: Not supported. You need to manually submit sticker pack for approval before you can use in app.
78
82
  - Viber
79
83
  - Download: Supported (e.g. `https://stickers.viber.com/pages/example` OR `https://stickers.viber.com/pages/custom-sticker-packs/example`)
80
84
  - Upload: Supported. Viber authentication data required for uploading Viber stickers, which could be fetched from Viber Desktop application automatically.
@@ -102,11 +106,11 @@ To run in CLI mode, pass on any arguments
102
106
 
103
107
  ```
104
108
  usage: sticker-convert.py [-h] [--version] [--no-confirm] [--no-progress] [--custom-presets CUSTOM_PRESETS] [--input-dir INPUT_DIR]
105
- [--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-band DOWNLOAD_BAND | --download-viber DOWNLOAD_VIBER | --download-discord DOWNLOAD_DISCORD | --download-discord-emoji DOWNLOAD_DISCORD_EMOJI]
109
+ [--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-band DOWNLOAD_BAND | --download-ogq DOWNLOAD_OGQ | --download-viber DOWNLOAD_VIBER | --download-discord DOWNLOAD_DISCORD | --download-discord-emoji DOWNLOAD_DISCORD_EMOJI]
106
110
  [--output-dir OUTPUT_DIR] [--author AUTHOR] [--title TITLE]
107
111
  [--export-signal | --export-telegram | --export-telegram-emoji | --export-telegram-telethon | --export-telegram-emoji-telethon | --export-viber | --export-whatsapp | --export-imessage]
108
112
  [--no-compress]
109
- [--preset {auto,signal,telegram,telegram_emoji,whatsapp,line,kakao,viber,discord,discord_emoji,imessage_small,imessage_medium,imessage_large,custom}]
113
+ [--preset {auto,signal,telegram,telegram_emoji,whatsapp,line,kakao,band,ogq,viber,discord,discord_emoji,imessage_small,imessage_medium,imessage_large,custom}]
110
114
  [--steps STEPS] [--processes PROCESSES] [--fps-min FPS_MIN] [--fps-max FPS_MAX] [--fps-power FPS_POWER]
111
115
  [--res-min RES_MIN] [--res-max RES_MAX] [--res-w-min RES_W_MIN] [--res-w-max RES_W_MAX] [--res-h-min RES_H_MIN]
112
116
  [--res-h-max RES_H_MAX] [--res-power RES_POWER] [--quality-min QUALITY_MIN] [--quality-max QUALITY_MAX]
@@ -163,6 +167,9 @@ Input options:
163
167
  --download-band DOWNLOAD_BAND
164
168
  Download Naver Band stickers from a URL / ID as input
165
169
  (Example: https://www.band.us/sticker/xxxx OR 2535)
170
+ --download-ogq DOWNLOAD_OGQ
171
+ Download OGQ stickers from a URL / ID as input
172
+ (Example: https://ogqmarket.naver.com/artworks/sticker/detail?artworkId=xxxxx)
166
173
  --download-viber DOWNLOAD_VIBER
167
174
  Download viber stickers from a URL as input
168
175
  (Example: https://stickers.viber.com/pages/example
@@ -195,7 +202,7 @@ Output options:
195
202
 
196
203
  Compression options:
197
204
  --no-compress Do not compress files. Useful for only downloading stickers.
198
- --preset {auto,signal,telegram,telegram_emoji,whatsapp,line,kakao,viber,discord,discord_emoji,imessage_small,imessage_medium,imessage_large,custom}
205
+ --preset {auto,signal,telegram,telegram_emoji,whatsapp,line,kakao,band,ogq,viber,discord,discord_emoji,imessage_small,imessage_medium,imessage_large,custom}
199
206
  Apply preset for compression.
200
207
  --steps STEPS Set number of divisions between min and max settings.
201
208
  Steps higher = Slower but yields file more closer to the specified file size limit.
@@ -501,5 +508,5 @@ See [docs/TODO.md](docs/TODO.md)
501
508
  - Free code signing on Windows provided by [SignPath.io](https://about.signpath.io/), certificate by [SignPath Foundation](https://signpath.org/)
502
509
 
503
510
  ## DISCLAIMER
504
- - The author of this repo is NOT affiliated with Signal, Telegram, WhatsApp, Line, Kakao, Naver Band, Viber, Discord, iMessage or Sticker Maker.
511
+ - The author of this repo is NOT affiliated with Signal, Telegram, WhatsApp, Line, Kakao, Naver Band, OGQ, Viber, Discord, iMessage or Sticker Maker.
505
512
  - The author of this repo is NOT repsonsible for any legal consequences and loss incurred from using this repo.
@@ -15,7 +15,7 @@ pyoxipng~=9.1.0
15
15
  python-telegram-bot~=22.1
16
16
  psutil~=7.0.0
17
17
  PyMemoryEditor~=1.5.22
18
- requests~=2.32.3
18
+ requests~=2.32.4
19
19
  rlottie_python~=1.3.7
20
20
  signalstickers-client-fork-laggykiller~=3.3.0.post2
21
21
  socksio~=1.0.0
@@ -233,6 +233,7 @@ class CLI:
233
233
  "telegram_telethon": args.download_telegram_telethon,
234
234
  "kakao": args.download_kakao,
235
235
  "band": args.download_band,
236
+ "ogq": args.download_ogq,
236
237
  "viber": args.download_viber,
237
238
  "discord": args.download_discord,
238
239
  "discord_emoji": args.download_discord_emoji,
@@ -0,0 +1,79 @@
1
+ #!/usr/bin/env python3
2
+ from __future__ import annotations
3
+
4
+ from pathlib import Path
5
+ from typing import Any, List, Optional, Tuple
6
+ from urllib import parse
7
+
8
+ import requests
9
+ from bs4 import BeautifulSoup
10
+
11
+ from sticker_convert.downloaders.download_base import DownloadBase
12
+ from sticker_convert.job_option import CredOption, InputOption
13
+ from sticker_convert.utils.callback import CallbackProtocol, CallbackReturn
14
+ from sticker_convert.utils.files.metadata_handler import MetadataHandler
15
+
16
+ # Reference: https://github.com/star-39/moe-sticker-bot/issues/49
17
+
18
+
19
+ class DownloadOgq(DownloadBase):
20
+ def __init__(self, *args: Any, **kwargs: Any) -> None:
21
+ super().__init__(*args, **kwargs)
22
+ self.headers = {"User-Agent": "Mozilla/5.0"}
23
+
24
+ def download_stickers_ogq(self) -> Tuple[int, int]:
25
+ url_parse = parse.urlparse(self.url)
26
+ if (
27
+ url_parse.netloc != "ogqmarket.naver.com"
28
+ or url_parse.path.startswith("/artworks/sticker/detail") is False
29
+ ):
30
+ self.cb.put(f"Invalid url: {self.url}")
31
+ artwork_id = {
32
+ i.split("=")[0]: i.split("=")[1] for i in url_parse.query.split("&")
33
+ }["artworkId"]
34
+
35
+ html = requests.get(self.url, headers=self.headers).text
36
+ soup = BeautifulSoup(html, "html.parser")
37
+
38
+ author_tag = soup.select_one("div.info div.nickname span") # type: ignore
39
+ author = author_tag.text.strip() if author_tag else "OGQ"
40
+ title_tag = soup.select_one("div.header div div.title p") # type: ignore
41
+ title = title_tag.text.strip() if title_tag else artwork_id
42
+
43
+ seen: List[str] = []
44
+ imgs: List[str] = []
45
+ targets: List[Tuple[str, Path]] = []
46
+ n = 0
47
+ for img in soup.find_all("img", alt="sticker-detail-image-prevew"):
48
+ src = img.get("src")
49
+ if not src:
50
+ continue
51
+ src = src.split("?")[0]
52
+ if src in seen:
53
+ continue
54
+ seen.append(src)
55
+ imgs.append(src)
56
+ sticker_url = f"{src}?type=ma480_480"
57
+ sticker_url_parse = parse.urlparse(sticker_url)
58
+ ext = sticker_url_parse.path.split(".")[-1]
59
+ if sticker_url_parse.path.split("/")[-1].startswith("original_"):
60
+ path = self.out_dir / f"{n}.{ext}"
61
+ else:
62
+ path = self.out_dir / f"cover.{ext}"
63
+ targets.append((sticker_url, path))
64
+ n += 1
65
+
66
+ results = self.download_multiple_files(targets)
67
+ MetadataHandler.set_metadata(self.out_dir, title=title, author=author)
68
+
69
+ return len(results.values()), len(targets)
70
+
71
+ @staticmethod
72
+ def start(
73
+ opt_input: InputOption,
74
+ opt_cred: Optional[CredOption],
75
+ cb: CallbackProtocol,
76
+ cb_return: CallbackReturn,
77
+ ) -> Tuple[int, int]:
78
+ downloader = DownloadOgq(opt_input, opt_cred, cb, cb_return)
79
+ return downloader.download_stickers_ogq()
@@ -16,6 +16,7 @@ from sticker_convert.downloaders.download_band import DownloadBand
16
16
  from sticker_convert.downloaders.download_discord import DownloadDiscord
17
17
  from sticker_convert.downloaders.download_kakao import DownloadKakao
18
18
  from sticker_convert.downloaders.download_line import DownloadLine
19
+ from sticker_convert.downloaders.download_ogq import DownloadOgq
19
20
  from sticker_convert.downloaders.download_signal import DownloadSignal
20
21
  from sticker_convert.downloaders.download_telegram import DownloadTelegram
21
22
  from sticker_convert.downloaders.download_viber import DownloadViber
@@ -570,6 +571,9 @@ class Job:
570
571
  if self.opt_input.option == "band":
571
572
  downloaders.append(DownloadBand.start)
572
573
 
574
+ if self.opt_input.option == "ogq":
575
+ downloaders.append(DownloadOgq.start)
576
+
573
577
  if self.opt_input.option == "viber":
574
578
  downloaders.append(DownloadViber.start)
575
579
 
@@ -375,6 +375,53 @@
375
375
  "quantize_method": "imagequant",
376
376
  "default_emoji": "😀"
377
377
  },
378
+ "ogq": {
379
+ "size_max": {
380
+ "img": 0,
381
+ "vid": 0
382
+ },
383
+ "format": {
384
+ "img": ".png",
385
+ "vid": ".gif"
386
+ },
387
+ "fps": {
388
+ "min": 1,
389
+ "max": 30,
390
+ "power": -0.5
391
+ },
392
+ "res": {
393
+ "w": {
394
+ "min": 480,
395
+ "max": 480
396
+ },
397
+ "h": {
398
+ "min": 480,
399
+ "max": 480
400
+ },
401
+ "power": 3
402
+ },
403
+ "quality": {
404
+ "min": 10,
405
+ "max": 95,
406
+ "power": 5
407
+ },
408
+ "color": {
409
+ "min": 32,
410
+ "max": 257,
411
+ "power": 3
412
+ },
413
+ "duration": {
414
+ "min": 83,
415
+ "max": 4000
416
+ },
417
+ "padding_percent": 0,
418
+ "bg_color": "",
419
+ "steps": 16,
420
+ "fake_vid": false,
421
+ "scale_filter": "bicubic",
422
+ "quantize_method": "imagequant",
423
+ "default_emoji": "😀"
424
+ },
378
425
  "viber": {
379
426
  "size_max": {
380
427
  "img": 0,
@@ -69,6 +69,16 @@
69
69
  "author": false
70
70
  }
71
71
  },
72
+ "ogq": {
73
+ "full_name": "Download from OGQ",
74
+ "help": "Download OGQ stickers from a URL / ID as input",
75
+ "example": "Example: https://ogqmarket.naver.com/artworks/sticker/detail?artworkId=xxxxx",
76
+ "address_lbls": "URL address",
77
+ "metadata_provides": {
78
+ "title": true,
79
+ "author": false
80
+ }
81
+ },
72
82
  "viber": {
73
83
  "full_name": "Download from Viber",
74
84
  "help": "Download viber stickers from a URL as input",
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env python3
2
+
3
+ __version__ = "2.13.2.0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sticker-convert
3
- Version: 2.13.1.0
3
+ Version: 2.13.2.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>
@@ -380,7 +380,7 @@ Requires-Dist: pyoxipng~=9.1.0
380
380
  Requires-Dist: python-telegram-bot~=22.1
381
381
  Requires-Dist: psutil~=7.0.0
382
382
  Requires-Dist: PyMemoryEditor~=1.5.22
383
- Requires-Dist: requests~=2.32.3
383
+ Requires-Dist: requests~=2.32.4
384
384
  Requires-Dist: rlottie_python~=1.3.7
385
385
  Requires-Dist: signalstickers-client-fork-laggykiller~=3.3.0.post2
386
386
  Requires-Dist: socksio~=1.0.0
@@ -396,7 +396,7 @@ Dynamic: license-file
396
396
 
397
397
  - A python script for creating, downloading, converting+compressing and uploading stickers from multiple instant messaging applications.
398
398
  - With GUI and CLI that runs on Windows, MacOS and Linux
399
- - Currently supports Signal, Telegram, WhatsApp (Create .wastickers), Line (Download only), Kakao (Download only), Naver Band (Download only), Viber, Discord (Download only), iMessage (Create Xcode sticker pack project)
399
+ - Currently supports Signal, Telegram, WhatsApp (Create .wastickers), Line (Download only), Kakao (Download only), Naver Band (Download only), OGQ (Download only), Viber, Discord (Download only), iMessage (Create Xcode sticker pack project)
400
400
  - Supports static and animated stickers, with transparency support
401
401
 
402
402
  ## Downloads
@@ -438,6 +438,7 @@ Dynamic: license-file
438
438
  | [Line](docs/guide_line.md) | ✅ | 🚫 (Need to submit for manual approval) |
439
439
  | [Kakao](docs/guide_kakao.md) | ✅ (Need 'auth_token' for animated) | 🚫 (Need to submit for manual approval) |
440
440
  | [Band](docs/guide_band.md) | ✅ | 🚫 (Need to submit for manual approval) |
441
+ | [OGQ](docs/guide_ogq.md) | ✅ | 🚫 (Need to submit for manual approval) |
441
442
  | [Viber](docs/guide_viber.md) | ✅ | ✅ (Require `viber_auth`) |
442
443
  | [Discord](docs/guide_discord.md) | ✅ (Require `token`) | 🚫 |
443
444
  | [iMessage](docs/guide_imessage.md) | 🚫 | ⭕ (Create Xcode stickerpack project for sideload) |
@@ -467,6 +468,9 @@ Dynamic: license-file
467
468
  - Band
468
469
  - Download: Supported (e.g. `https://www.band.us/sticker/xxxx` OR 2535). Learn how to get share link from [docs/guide_band.md](docs/guide_band.md)
469
470
  - Upload: Not supported. You need to manually submit sticker pack for approval before you can use in app.
471
+ - OGQ
472
+ - Download: Supported (e.g. `https://ogqmarket.naver.com/artworks/sticker/detail?artworkId=xxxxx`)
473
+ - Upload: Not supported. You need to manually submit sticker pack for approval before you can use in app.
470
474
  - Viber
471
475
  - Download: Supported (e.g. `https://stickers.viber.com/pages/example` OR `https://stickers.viber.com/pages/custom-sticker-packs/example`)
472
476
  - Upload: Supported. Viber authentication data required for uploading Viber stickers, which could be fetched from Viber Desktop application automatically.
@@ -494,11 +498,11 @@ To run in CLI mode, pass on any arguments
494
498
 
495
499
  ```
496
500
  usage: sticker-convert.py [-h] [--version] [--no-confirm] [--no-progress] [--custom-presets CUSTOM_PRESETS] [--input-dir INPUT_DIR]
497
- [--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-band DOWNLOAD_BAND | --download-viber DOWNLOAD_VIBER | --download-discord DOWNLOAD_DISCORD | --download-discord-emoji DOWNLOAD_DISCORD_EMOJI]
501
+ [--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-band DOWNLOAD_BAND | --download-ogq DOWNLOAD_OGQ | --download-viber DOWNLOAD_VIBER | --download-discord DOWNLOAD_DISCORD | --download-discord-emoji DOWNLOAD_DISCORD_EMOJI]
498
502
  [--output-dir OUTPUT_DIR] [--author AUTHOR] [--title TITLE]
499
503
  [--export-signal | --export-telegram | --export-telegram-emoji | --export-telegram-telethon | --export-telegram-emoji-telethon | --export-viber | --export-whatsapp | --export-imessage]
500
504
  [--no-compress]
501
- [--preset {auto,signal,telegram,telegram_emoji,whatsapp,line,kakao,viber,discord,discord_emoji,imessage_small,imessage_medium,imessage_large,custom}]
505
+ [--preset {auto,signal,telegram,telegram_emoji,whatsapp,line,kakao,band,ogq,viber,discord,discord_emoji,imessage_small,imessage_medium,imessage_large,custom}]
502
506
  [--steps STEPS] [--processes PROCESSES] [--fps-min FPS_MIN] [--fps-max FPS_MAX] [--fps-power FPS_POWER]
503
507
  [--res-min RES_MIN] [--res-max RES_MAX] [--res-w-min RES_W_MIN] [--res-w-max RES_W_MAX] [--res-h-min RES_H_MIN]
504
508
  [--res-h-max RES_H_MAX] [--res-power RES_POWER] [--quality-min QUALITY_MIN] [--quality-max QUALITY_MAX]
@@ -555,6 +559,9 @@ Input options:
555
559
  --download-band DOWNLOAD_BAND
556
560
  Download Naver Band stickers from a URL / ID as input
557
561
  (Example: https://www.band.us/sticker/xxxx OR 2535)
562
+ --download-ogq DOWNLOAD_OGQ
563
+ Download OGQ stickers from a URL / ID as input
564
+ (Example: https://ogqmarket.naver.com/artworks/sticker/detail?artworkId=xxxxx)
558
565
  --download-viber DOWNLOAD_VIBER
559
566
  Download viber stickers from a URL as input
560
567
  (Example: https://stickers.viber.com/pages/example
@@ -587,7 +594,7 @@ Output options:
587
594
 
588
595
  Compression options:
589
596
  --no-compress Do not compress files. Useful for only downloading stickers.
590
- --preset {auto,signal,telegram,telegram_emoji,whatsapp,line,kakao,viber,discord,discord_emoji,imessage_small,imessage_medium,imessage_large,custom}
597
+ --preset {auto,signal,telegram,telegram_emoji,whatsapp,line,kakao,band,ogq,viber,discord,discord_emoji,imessage_small,imessage_medium,imessage_large,custom}
591
598
  Apply preset for compression.
592
599
  --steps STEPS Set number of divisions between min and max settings.
593
600
  Steps higher = Slower but yields file more closer to the specified file size limit.
@@ -893,5 +900,5 @@ See [docs/TODO.md](docs/TODO.md)
893
900
  - Free code signing on Windows provided by [SignPath.io](https://about.signpath.io/), certificate by [SignPath Foundation](https://signpath.org/)
894
901
 
895
902
  ## DISCLAIMER
896
- - The author of this repo is NOT affiliated with Signal, Telegram, WhatsApp, Line, Kakao, Naver Band, Viber, Discord, iMessage or Sticker Maker.
903
+ - The author of this repo is NOT affiliated with Signal, Telegram, WhatsApp, Line, Kakao, Naver Band, OGQ, Viber, Discord, iMessage or Sticker Maker.
897
904
  - The author of this repo is NOT repsonsible for any legal consequences and loss incurred from using this repo.
@@ -24,6 +24,7 @@ src/sticker_convert/downloaders/download_base.py
24
24
  src/sticker_convert/downloaders/download_discord.py
25
25
  src/sticker_convert/downloaders/download_kakao.py
26
26
  src/sticker_convert/downloaders/download_line.py
27
+ src/sticker_convert/downloaders/download_ogq.py
27
28
  src/sticker_convert/downloaders/download_signal.py
28
29
  src/sticker_convert/downloaders/download_telegram.py
29
30
  src/sticker_convert/downloaders/download_viber.py
@@ -15,7 +15,7 @@ pyoxipng~=9.1.0
15
15
  python-telegram-bot~=22.1
16
16
  psutil~=7.0.0
17
17
  PyMemoryEditor~=1.5.22
18
- requests~=2.32.3
18
+ requests~=2.32.4
19
19
  rlottie_python~=1.3.7
20
20
  signalstickers-client-fork-laggykiller~=3.3.0.post2
21
21
  socksio~=1.0.0
@@ -476,6 +476,34 @@ def test_download_band_static(tmp_path: LocalPath) -> None:
476
476
 
477
477
  @pytest.mark.skipif(not TEST_DOWNLOAD, reason="TEST_DOWNLOAD not set")
478
478
  @pytest.mark.skipif(not KAKAO_TOKEN, reason="No credentials")
479
+ def test_download_ogq_animated(tmp_path: LocalPath) -> None:
480
+ _run_sticker_convert(
481
+ tmp_path=tmp_path,
482
+ source="band",
483
+ url="https://ogqmarket.naver.com/artworks/sticker/detail?artworkId=5ef373905a559",
484
+ expected_file_count=25,
485
+ expected_file_formats=[".png", ".gif"],
486
+ with_title=True,
487
+ with_author=True,
488
+ with_emoji=False,
489
+ )
490
+
491
+
492
+ @pytest.mark.skipif(not TEST_DOWNLOAD, reason="TEST_DOWNLOAD not set")
493
+ def test_download_ogq_static(tmp_path: LocalPath) -> None:
494
+ _run_sticker_convert(
495
+ tmp_path=tmp_path,
496
+ source="band",
497
+ url="https://ogqmarket.naver.com/artworks/sticker/detail?artworkId=636bf3c2a6bc3",
498
+ expected_file_count=25,
499
+ expected_file_formats=[".png"],
500
+ with_title=True,
501
+ with_author=True,
502
+ with_emoji=False,
503
+ )
504
+
505
+
506
+ @pytest.mark.skipif(not TEST_DOWNLOAD, reason="TEST_DOWNLOAD not set")
479
507
  def test_download_band_animated(tmp_path: LocalPath) -> None:
480
508
  _run_sticker_convert(
481
509
  tmp_path=tmp_path,
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env python3
2
-
3
- __version__ = "2.13.1.0"