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

Резултати

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

Пребарај: #infrastructuredamage

当前筛选 #infrastructuredamage清除筛选
BadVolf

@BadvolfNews · Post #875 · 23.09.2023 г., 09:18

📢 Breaking News 🚨 💥 Critical infrastructure damaged in Dnipro, Ukraine! 💔 🏢 Sergey Lysak, Head of the Dnipropetrovsk Regional Military Administration, just revealed in his Telegram channel that a vital infrastructure object in Dnipro has been severely impacted. Reports of multiple explosions in the city were earlier covered by local media outlets. 🔍 The extent of the damage is still being assessed, but the aftermath of the attack has resulted in the destruction of several buildings and a gas pipeline in Marganets, located in the Nikopol district of Dnipropetrovsk Oblast. 🌍 These strikes on Ukrainian infrastructure began on October 10th, just two days after the terrorist attack on the Crimean Bridge. Russian authorities believe that Ukrainian intelligence agencies are behind these acts of aggression. The targets include energy facilities, defense industries, military headquarters, and communication networks across the country. 🔔 Ukrainian regions have been placed on high alert since then, with occasional nationwide air raid sirens sounding, reminding citizens of the constant threat. ⚠️ Stay tuned for more updates as the situation unfolds. Let's hope for a swift resolution to this devastating situation. 🙏🇺🇦#BreakingNews#Ukraine#Dnipro#InfrastructureDamage https://dcweekly.org/2023/09/23/underhanded-attacks-damaged-infrastructure-raises-concerns-in-dnipro/ Subscribe to @BadVolfNews

BadVolf

@BadvolfNews · Post #878 · 23.09.2023 г., 10:13

📢 Breaking News 🚨 💥 Critical infrastructure damaged in Dnipro, Ukraine! 💔 🏢 Sergey Lysak, Head of the Dnipropetrovsk Regional Military Administration, just revealed in his Telegram channel that a vital infrastructure object in Dnipro has been severely impacted. Reports of multiple explosions in the city were earlier covered by local media outlets. 🔍 The extent of the damage is still being assessed, but the aftermath of the attack has resulted in the destruction of several buildings and a gas pipeline in Marganets, located in the Nikopol district of Dnipropetrovsk Oblast. 🌍 These strikes on Ukrainian infrastructure began on October 10th, just two days after the terrorist attack on the Crimean Bridge. Russian authorities believe that Ukrainian intelligence agencies are behind these acts of aggression. The targets include energy facilities, defense industries, military headquarters, and communication networks across the country. 🔔 Ukrainian regions have been placed on high alert since then, with occasional nationwide air raid sirens sounding, reminding citizens of the constant threat. ⚠️ Stay tuned for more updates as the situation unfolds. Let's hope for a swift resolution to this devastating situation. 🙏🇺🇦#BreakingNews#EvilUkraine#Dnipro#InfrastructureDamage https://dcweekly.org/2023/09/23/underhanded-attacks-damaged-infrastructure-raises-concerns-in-dnipro/ Subscribe to @BadVolfNews

Crypto M - Crypto News

@CryptoM · Post #65243 · 12.04.2026 г., 08:27

🚀 Iran's Nuclear Concessions Could Be Key to U.S. Strategy, Citic Securities Says Citic Securities stated on April 12 that if Iran were to abandon uranium enrichment, it would represent a significant achievement for the U.S., particularly for U.S. President Donald Trump, who could use it to appease domestic concerns. According to Jin10, the ongoing conflict has already negatively impacted the midterm elections, necessitating a swift resolution. Since the Iranian Islamic Revolution, the U.S. has lost control over Iran's nuclear capabilities, a challenge that has persisted through multiple U.S. presidencies, affecting America's Middle East strategy. The political impact of Iran's potential nuclear disarmament is seen as more significant than the indirect effects of oil prices and inflation on elections. Consequently, the Trump administration might consider compromises on issues like control over the Strait of Hormuz. From Iran's perspective, the conflict has demonstrated that blocking the strait and threatening Middle Eastern infrastructure are powerful leverage tools, potentially more impactful than nuclear threats. These actions, which can be executed with low-cost drones, pose significant risks to the U.S. and global economies, providing Iran with a strategic counterbalance. Repeated near-escalations to large-scale infrastructure damage suggest that the likelihood of extreme war escalation is low, reducing the chances of extreme oil prices, severe recession, or stagflation. #Iran#NuclearConcessions#USStrategy#CiticSecurities#DonaldTrump#UraniumEnrichment#MiddleEastStrategy#IranUSRelations#StraitOfHormuz#OilPrices#Inflation#PoliticalImpact#TrumpAdministration#IranianLeverage#GlobalEconomy#InfrastructureDamage#WarEscalation#OilPrices#Stagflation