Регулярно требуется преобразовать какой-либо текст в максимально совместимый текст для 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
Venezuelan Interior Minister Diosdado Cabello announced the arrest of a US Navy SEAL and two Spanish citizens, accusing them of plotting to assassinate President Nicolás Maduro. Authorities also seized 400 firearms and uncovered plans to attack key infrastructure. The US has denied involvement, calling the claims "categorically false."
Read the full report here 👉🏼https://shorturl.at/VIMCG
#Opposition#USVenezuelaRelations
Anatomy of Political Opposition in Ethiopia: Motives, Destinations, and Reasons to Reject or Accept Them. Read more.
https://borkena.com/2025/11/17/anatomy-of-political-opposition-in-ethiopia-motives-destinations-and-reasons-to-reject-or-accept-them/#Ethiopia#opposition#politics
Dear opposition politicians, Stop Illusion and Do the Real Work. Read. https://borkena.com/2025/11/07/ethiopia-dear-opposition-politicians-stop-illusion-and-do-the-real-work/#Ethiopia#opposition#politics
Before departing for Spain, Edmundo González signed a letter acknowledging the judicial ruling that confirmed Nicolás Maduro's victory. Later, the European Parliament passed a symbolic, non-binding resolution declaring González as Venezuela's "legitimate" president.
Read the full report here: https://shorturl.at/8cqhl
#Opposition#presidentialelections2024
Edmundo González, the US-backed opposition presidential candidate in Venezuela, has fled the country and arrived in Spain.
He sought refuge in the Spanish Embassy in Caracas before being granted safe passage by Venezuelan authorities. An arrest warrant had been issued for him last week, charging him with conspiracy and other crimes.
Read the full report here 👉🏼https://shorturl.at/BzsoN
#PresidentialElections2024#Opposition
Venezuelan authorities have issued an arrest warrant for former opposition presidential candidate Edmundo González on multiple charges, including forgery and conspiracy. The move comes after González refused to respond to summonses and amid his claim of electoral victory.
Full report 👉🏼https://shorturl.at/LTiS9
#Opposition#PresidentialElections2024
Venezuelan authorities have arrested two associates of opposition leader María Corina Machado, alleging a plot to incite violence similar to the 2014 and 2017 protests. The arrests aim to prevent attacks on military installations and energy companies.
Full details here 👉https://bit.ly/3IPfGlA
#opposition#presidentialelections2024
10 Ethiopian Opposition Parties Set Preconditions For Participation in the 7th General Election. Read.
https://borkena.com/2025/11/13/10-ethiopian-opposition-parties-set-preconditions-for-participation-in-the-7th-general-election/#Ethiopia#News#politics#Opposition
Despite María Corina Machado's bold claim, "There will be no elections without me!" the majority of opposition factions are committed to moving forward, concentrating on offering viable alternatives for Venezuela's presidential elections.
Don't miss out on the latest VA column from Clodovaldo Hernández. Click here to read more 👉🏽https://bit.ly/3OSlfD1
#Venezuela#opposition#presidentialelections2024
📑🖊 ANALYSIS | Venezuela in 2025: Unexpected Turns Mark the Start of the Political Year
VA columnist Clodovaldo Hernández reflects on recent events in the Trump II era and examines their impact on Venezuela’s opposition.
Trump’s second term has taken an unexpected turn regarding Venezuela. His special envoy, Richard Grenell, met with Nicolás Maduro in Caracas and facilitated the return of six U.S. citizens imprisoned in Venezuela. Meanwhile, USAID funding for opposition parties, NGOs, and media has been suspended for three months, triggering internal disputes.
🔗 Read VA’s latest column here: https://shorturl.at/Ek5T1
#DonaldTrump#Opposition#USVenezuelaRelations
🎙 Episode 31 of the VA Podcast is live: Is Edmundo González ‘Guaidó 2.0’?
The Venezuelanalysis podcast tackles the proverbial million-dollar question everyone is talking about: is the Trump administration about to do a rerun of the “interim government,” this time with Edmundo González in place of Juan Guaidó?
Host José Luis Granados Ceja is joined by fellow VA writer and editor Ricardo Vaz to talk about the different scenarios, sanctions and the economic balancing acts the Maduro government is facing.
Watch the full episode: https://www.youtube.com/watch?v=Nvrvw4M2jqo
#DonaldTrump#opposition#sanctions
In an opinion piece by Smolarek and Alexandra, they reveal how the US-led narrative of electoral fraud in Venezuela aims to delegitimize the government. Despite scrutiny, Venezuela remains steadfast in upholding democracy amid external pressures.
"After years of political instability caused by right-wing plots to overthrow the democratically elected government and even assassinate the leader, the Venezuelan government has pursued a straightforward principle." highlights the article.
Read more here: https://venezuelanalysis.com/analysis/venezuelas-election-in-the-crosshairs-of-new-us-regime-change-scheme/
#NicolasMaduro#opposition#presidentialelections2024