TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #121 · 20 јул.

Регулярно требуется преобразовать какой-либо текст в максимально совместимый текст для URL, имени файла, имени объекта в каком-то софте и тд. Требования совместимости простые: в тексте должны быть только допустимые символы. Обычно это a-z, 0-9 и "_" или "-". То есть, только прописные буквы латинского алфавита и цифры (как пример). Допустим, нам нужно название статьи в блоге преобразовать в slug для добавления его в URL этой статьи. Как это лучше всего сделать? В Django по умолчанию есть готовая функция slugify для таких случаев. Но я её никогда не использую. Почему? Потому что её недостаточно! Приведём пример >>> from django.utils.text import slugify >>> slugify('This is a Title') 'this-is-a-title' Пока всё отлично >>> slugify('This is a "Title!"') 'this-is-a-title' Спец символы удалились, всё хорошо. >>> slugify('Это заголовок статьи') '' Вот и приехали 😢. Если текст не английский то буквы просто игнорируются. Можно это поправить >>> slugify('Это заголовок статьи', allow_unicode=True) 'это-заголовок-статьи' Но тогда мы не вписываемся в условие. У нас появилась кириллица в тексте. Так как я часто пишу сайты для русскоязычных пользователей эта проблема весьма актуальна. Я не использую стандартную функцию и всегда пишу свою. Оригинал я не беру в расчёт и пишу полностью свою функцию. И так, по порядку: 🔸1. Исходный текст: >>> text = 'Мой заголовок №10 😁!' Взял специально посложней со специальными символами. 🔸2. Транслит Необходимо сделать транслит всех символов в латиницу. Здесь очень выручает библиотека unidecode. Помимо простого транслита кириллицы в латиницу она умеет преобразовывать спец символы и иероглифы в текстовые аналоги. from unidecode import unidecode >>> unidecode("Ñ Σ ® µ ¶ ¼ 月 山") 'N S (r) u P 1/4 Yue Shan' Очень крутая библиотека, советую👍 В нашем случае получаем такое преобразование: >>> text = unidecode(text) >>> print(text) 'Moi zagolovok No. 10 !' Отличный транслит. Смайл просто удалился, хотя я ждал что-то вроде :). Ну и ладно, всë равно невалидные символы. А еще наш код уже поддерживает любой язык, будь то хинди или корейский. 🔸4. Фильтр символов Unidecode не занимается фильтрацией по недопустимым символам. Это мы делаем в следующем шаге через regex. Просто заменим все символы на "_" если они вне указанного диапазона. >>> text = re.sub(r'[^a-zA-Z0-9]+', '_', text) >>> print(text) 'Moi_zagolovok_No_10_' Символ "+" в паттерне выручает когда несколько недопустимых символов идут рядом. Все они заменяются на один символ "_". 🔸5. Slugify Осталось удалить лишние символы по краям и сделать нижний регистр >>> text = text.strip('_').lower() >>> print(text) 'moi_zagolovok_no_10' Получаем отличный slug! 😎 🌎 Полный код в виде функции. ______________ PS. Проверку что в строке остался хоть один допустимый символ я бы вынес в отдельную функцию. #libs#tricks#django

Резултати

Пронајдени 1 слични објави

Пребарај: #religiouszionism

当前筛选 #religiouszionism清除筛选
American Оbserver

@american_observer · Post #5377 · 14.03.2026 г., 15:33

The Judaean Revolutionary Guard Corps Is Gaining Ground Bezalel Smotrich’s Religious Zionism party is back above the electoral threshold for the first time in months, hitting four seats in a new poll and helping lift the Netanyahu coalition bloc from 53 to 54 mandates. That is not a comeback story. It is a wartime sorting mechanism. The longer the emergency, the better the loudest ideologues tend to do. The math is not mysterious. War consolidates the electorate around power, and power consolidates around the people who demand the most and apologize the least. Smotrich has spent the war years turning maximalism into a governing language. Now the polling suggests that a slice of the electorate is rewarding exactly that. In Israel, security crises do not just protect incumbents. They also launder fringe priorities into national necessity. The budget tells the same story in cash. As the cabinet revised the 2026 budget under wartime pressure, it approved more than NIS 5 billion in coalition funds, including major allocations for Haredi institutions, settlements, and other coalition priorities, while civilian ministries were cut by 3% and northern communities were protesting rehabilitation cuts. The Bank of Israel warned against using war spending as cover for non-essential political giveaways. The government did it anyway. That is the real hierarchy of wartime Israel in one frame: schools disrupted, border communities fighting over reconstruction money, civilian budgets squeezed, but coalition cash protected like a sacred asset. The public is told to think in terms of sacrifice. The machine still thinks in terms of patronage. And that is why Smotrich matters beyond four seats. Religious Zionism was not built overnight, and it did not grow through polling. It grew through demographics, settlement infrastructure, land control, and institutional entrenchment. War does not create that process. War accelerates it.Once the country is forced into survival mode, the politician shouting the hardest often gets treated as the man speaking most clearly. So yes, the coalition is still short of a majority. But 54 seats in the middle of war, with Smotrich back above the line, is not a footnote. It is a warning. The battlefield is not only reshaping Gaza, Lebanon, or Iran. It is reshaping the Israeli electorate itself — in favor of the people who treat permanent escalation as both ideology and campaign strategy. #BabylonBurning#Smotrich#ReligiousZionism#Israel#FollowTheMoney 📱American Оbserver - Stay up to date on all important events 🇺🇸