yeref 0.29.12__tar.gz → 0.29.14__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.
- {yeref-0.29.12 → yeref-0.29.14}/PKG-INFO +1 -1
- {yeref-0.29.12 → yeref-0.29.14}/setup.py +1 -1
- {yeref-0.29.12 → yeref-0.29.14}/yeref/l_.py +4 -4
- {yeref-0.29.12 → yeref-0.29.14}/yeref/yeref.py +23 -1
- {yeref-0.29.12 → yeref-0.29.14}/yeref.egg-info/PKG-INFO +1 -1
- {yeref-0.29.12 → yeref-0.29.14}/pyproject.toml +0 -0
- {yeref-0.29.12 → yeref-0.29.14}/setup.cfg +0 -0
- {yeref-0.29.12 → yeref-0.29.14}/yeref/__init__.py +0 -0
- {yeref-0.29.12 → yeref-0.29.14}/yeref/tonweb.js +0 -0
- {yeref-0.29.12 → yeref-0.29.14}/yeref.egg-info/SOURCES.txt +0 -0
- {yeref-0.29.12 → yeref-0.29.14}/yeref.egg-info/dependency_links.txt +0 -0
- {yeref-0.29.12 → yeref-0.29.14}/yeref.egg-info/top_level.txt +0 -0
@@ -5437,8 +5437,8 @@ l_hand_msg_channel = {
|
|
5437
5437
|
'ar': "🫥 <b>الرسائل</b> <i>بالنيابة عن القناة</i> غير مسموح بها",
|
5438
5438
|
}
|
5439
5439
|
l_hand_msg_emoji = {
|
5440
|
-
'ru': "
|
5441
|
-
'en': "
|
5440
|
+
'ru': "🫥 <b>Сообщения</b> <i>c эмоджи</i> не разрешены",
|
5441
|
+
'en': "🫥 <b>Messages</b> <i>with emoji</i> are not allowed",
|
5442
5442
|
'es': "🗣 <b>Mensajes</b> <i>con emoji</i> no están permitidos",
|
5443
5443
|
'fr': "🗣 Les <b>Messages</b> <i>avec emoji</i> ne sont pas autorisés",
|
5444
5444
|
'zh': "🗣 不允许<b>消息</b> <i>带有表情符号</i>",
|
@@ -5461,7 +5461,7 @@ l_hand_msg_telegram = {
|
|
5461
5461
|
'ar': "🔗 <b>الرسائل</b> <i>التي تحتوي على روابط تيليجرام</i> غير مسموح بها",
|
5462
5462
|
}
|
5463
5463
|
l_hand_msg_forward = {
|
5464
|
-
'ru': "🔗 <b>Сообщения</b> <i>c
|
5464
|
+
'ru': "🔗 <b>Сообщения</b> <i>c форвард-ссылками</i> не разрешены",
|
5465
5465
|
'en': "🔗 <b>Messages</b> <i>with forward links</i> are not allowed",
|
5466
5466
|
'es': "🔗 No se permiten <b>Mensajes</b> <i>con enlaces directos</i>",
|
5467
5467
|
'fr': "🔗 Les <b>Messages</b> <i>avec liens de transfert</i> ne sont pas autorisés",
|
@@ -5477,7 +5477,7 @@ l_hand_msg_zalgo = {
|
|
5477
5477
|
'ar': "文 <b>الرسائل</b> <i>c <a href=' https://www.zalgo.org '> zalgo-characters</a></i> غير مسموح بها",
|
5478
5478
|
}
|
5479
5479
|
l_hand_msg_symbols = {
|
5480
|
-
'ru': "文 <b>Сообщения</b> <i>c
|
5480
|
+
'ru': "文 <b>Сообщения</b> <i>c 文ب-glyth символами</i> не разрешены",
|
5481
5481
|
'en': "文 <b>Messages</b> <i>with 文ب-alphabets</i> are not allowed",
|
5482
5482
|
'es': "文 <b>Mensajes</b> <i>con 文ب-alfabetos</i> no están permitidos",
|
5483
5483
|
'fr': "文 <b>Les messages</b> <i>avec les alphabets 文ب</i> ne sont pas autorisés",
|
@@ -14,7 +14,8 @@ import math
|
|
14
14
|
import mimetypes
|
15
15
|
import os
|
16
16
|
import random
|
17
|
-
import
|
17
|
+
import regex
|
18
|
+
import re
|
18
19
|
import csv
|
19
20
|
import subprocess
|
20
21
|
import uuid
|
@@ -2209,6 +2210,17 @@ text_privacy_terms = (
|
|
2209
2210
|
"\t\"privacy_policy\": \"https://telegram.org/privacy-tpa\"\n"
|
2210
2211
|
"}</blockquote>"
|
2211
2212
|
)
|
2213
|
+
PAT = regex.compile(
|
2214
|
+
r'[\p{Han}\p{Hiragana}\p{Katakana}\p{Hangul}'
|
2215
|
+
r'\p{Arabic}\p{Hebrew}\p{Ethiopic}'
|
2216
|
+
r'\p{Devanagari}\p{Bengali}\p{Gurmukhi}\p{Tamil}\p{Telugu}'
|
2217
|
+
r'\p{Kannada}\p{Malayalam}\p{Thai}'
|
2218
|
+
r'\p{Khmer}\p{Tibetan}\p{Myanmar}]'
|
2219
|
+
)
|
2220
|
+
PAT_ZALGO = regex.compile(
|
2221
|
+
r'[\u0300-\u036F\u1AB0-\u1AFF\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]{2,}'
|
2222
|
+
)
|
2223
|
+
|
2212
2224
|
commands_ru = [types.BotCommand(command="start", description="⚙️ Перезагрузка"),
|
2213
2225
|
types.BotCommand(command="lang", description="🇫🇷 Язык"),
|
2214
2226
|
types.BotCommand(command="happy", description="🐈 Счастье")]
|
@@ -13726,6 +13738,16 @@ async def edit_simple2(bot, chat_id, user_id, entity_id, post_id, message_id, cu
|
|
13726
13738
|
|
13727
13739
|
|
13728
13740
|
# region fun
|
13741
|
+
def has_non_european_glyph(text):
|
13742
|
+
if text.isascii(): return False
|
13743
|
+
return bool(PAT.search(text))
|
13744
|
+
|
13745
|
+
|
13746
|
+
def has_zalgo(text):
|
13747
|
+
if text.isascii(): return False
|
13748
|
+
return bool(PAT_ZALGO.search(text))
|
13749
|
+
|
13750
|
+
|
13729
13751
|
async def page_tghp_create_for_post(ENT_TID, ENT_USERNAME, ENT_FIRSTNAME, PROJECT_TYPE, BASE_P):
|
13730
13752
|
try:
|
13731
13753
|
ENT_JSONTGPH = None
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|