Регулярно требуется преобразовать какой-либо текст в максимально совместимый текст для 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
🇹🇼l🇱🇧
Taiwan's Gold Apollo pager company issued a statement stating:
"- The #pagers that exploded in #Lebanon carry our trademark, but they were manufactured in Europe.
- All AP924 Model Pager models were subcontracted to a company in Europe, about 5,000 in that batch to Lebanon.
- The pagers were manufactured in through third party components."
They are trying to clear Taiwan, which is mostly plausible, as Europe was always the hub for the Mossad historically when sabotaging supply chains.
How about naming the European country/manufacturer? Wouldn't that clear the Taiwan based company's name faster?
AP-900: This what we know about one of the #pagers that exploded in #Lebanon at the hands of Zionist Israel:
▫️The AP-900 alphanumeric pager functions as a wireless communication device that receives messages via radio signals.
▫️At least 11 people have been martyred and over 4,000 others, including civilians, medics and Hezbollah members, were injured when their paging devices exploded across Lebanon.
▫️The AP-900, popular in the 1990s and early 2000s, was designed to receive and display text messages, making it an essential communication tool in various professional and emergency settings.
▫️Despite its simplicity, the AP-900 operates on a sophisticated system that ensures messages are delivered promptly and accurately.
▫️A message transmission starts at a central paging terminal, which encodes the message into a signal format like FLEX or POCSAG.
▫️This signal is sent over a specific frequency band, and the AP-900 pager, scanning for signals that match its unique identifier, receives it through its antenna.
▫️The pager then decodes and displays the message on its screen, alerting the user with vibration, sound, or both.
▫️Additionally, the AP-900 can store multiple messages for later review.
▫️Can the AP-900 Be Hacked?
Theoretically, yes, the AP-900 can be hacked, but it would require specialised knowledge and equipment, information from open sources show.
▫️Although the messages are encoded, they are not typically encrypted, meaning that an intercepted message can be easily decoded.
▫️More sophisticated attacks could involve compromising the messaging infrastructure or physically tampering with the devices during distribution.
AP-900 and AR-924 pagers were the latest tool of Israeli attacks against Lebanon. A massive terrorist attack saw the devices exploding among civilians and Hezbollah members in a Mossad-operated aggression.
#Lebanon#Hezbollah#Pagers#Mossad#Israel
For the first time, Israeli Prime Minister Benjamin Netanyahu admitted in a cabinet meeting on Sunday that he stands behind several terrorist attacks against Lebanon such as the assassination of Hezbollah chief and the pagers and walkie-talkies attacks.
#Hezbollah#Nasrallah#Pagers#UnitedStates#Israel#Netanyahu
After terming the Israeli terrorist attack in Lebanon as a declaration of war, Hezbollah Chief Hassan Nasrallah vows a harsh and just punishment upon Israel.
#Hezbollah#Lebanon#Nasrallah#Pagers#Israel#Mossad#Gaza#Palestine
In the first remarks after the Israeli terrorist attack against Lebanon, Hezbollah Secretary General Hassan Nasrallah termed the aggression as a declaration of war from the Israeli side.
#Hezbollah#Lebanon#Nasrallah#Pagers#Israel#Mossad#Gaza#Palestine
A fake market, explosive devices, and a decade-long plot—this is the hidden war #Mossad waged on #Hezbollah.
#Israel#Pagers#Lebanon#MiddleEast#War#PagerBombs