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

Резултати

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

Пребарај: #flight

当前筛选 #flight清除筛选
Interesting Planet 🌍

@interesting_planet_facts · Post #528 · 09.08.2025 г., 16:22

🌎 The common swift spends nearly its entire life in the air, even sleeping in flight! These agile birds eat, mate, and nap on the wing, rarely landing outside breeding season. ✨ #birds⚡#adaptation⚡#flight 👉subscribe Interesting Planet

Лёгкое небо

@legkoenebo · Post #3465 · 23.12.2024 г., 14:55

📕💬Полёт по кругу («полёт по коробочке») — полёт по установленному маршруту (обычно прямоугольному) в районе аэродрома для выполнения взлёта, захода на посадку и посадки, а также для ухода и подхода к аэродрому. Является важной частью захода на посадку и УТП (учебно-тренировочных полётов) на самолётах и планёрах. В случае УТП на самолёте может применяться посадка конвейером Лёгкое небо #c172#flight#vfr

American Оbserver

@american_observer · Post #5719 · 26.04.2026 г., 19:59

Witkoff and Kushner: Flight Canceled ✈️❌ Trump canceled the trip by his envoys Witkoff and Kushner to Islamabad due to the Iranian position in peace negotiations. 🇮🇷🤝🚫 The envoys had been expected to meet with Iranian Foreign Minister Araghchi, in a trip designed to break a diplomatic stalemate and build momentum for a deal. I see no point of sending them on an 18-hour flight in the current situation [of the negotiations]. It's too long. We can do it just as well by telephone. 📞 Asked whether it means he is going to resume the war, Trump said: "No. It doesn't mean that. We haven't thought about it yet." ⚔️🚫 "We have all the cards. We are not going to go there to sit around talking about nothing." 🃏 Trump later told reporters Saturday afternoon that the meeting with the Iranians wasn't going to happen until Tuesday, and that therefore he thought it was a waste of time to travel to Pakistan. 🕰 He also said a counteroffer Araghchi gave the Pakistanis on Saturday wasn't good enough. 📄🚫 "They gave us a paper that should have been better and interestingly the minute I cancelled it, within 10 minutes, we got a new paper that was much better (…) they offered a lot but not enough," Trump said. ⏱️📝 While Trump extended the ceasefire with Iran earlier this week, the diplomatic efforts haven't made any progress in recent days. 🕊⏸️ U.S. officials had said Iran's divided factions had a short window to come together on an offer. 🪟👥 "There is tremendous infighting and confusion within their 'leadership.' Nobody knows who is in charge, including them," Trump said in a Truth Social post Saturday after calling off the trip. 😵‍💫📢 Araghchi met on Saturday in Islamabad with Pakistan's prime minister, army commander, and foreign minister, who have been mediating between the sides. 🇵🇰🤝 But the talks ended with no significant progress. Araghchi left Islamabad without committing to meet Witkoff and Kushner if they traveled to Pakistan. 🚶‍♂️🚫 The Iranian foreign minister expressed in his meetings that Iran demands the lifting of the U.S. naval blockade as a pre-condition for talks. ⚓️🚫 About an hour after Araghchi left Islamabad, Trump decided to cancel the trip. ⏳❌ "Have yet to see if the U.S. is truly serious about diplomacy," Araghchi said in a post on X thanking the Pakistanis for their efforts. 🤔🇺🇸 What comes next isn't clear, though Trump allies called on the president to continue pressure on the Iranians — even if that means resuming military operations. 🤷‍♂️🔥 #witkoff#kushner#araghchi#trump#flight 📱American Оbserver - Stay up to date on all important events 🇺🇸

Libreware

@libreware · Post #1134 · 24.05.2023 г., 00:02

OpenRocket is a Libre (GNU GPL), fully featured model rocket simulator software that allows you to design and simulate your rockets before actually building and flying them. OpenRocket is available as packages for Linux, macOS and Windows The main features include: Six-degree-of-freedom flight simulation Automatic design optimization Realtime simulated altitude, velocity and acceleration display Staging and clustering support Cross-platform (Java-based) GitHub - openrocket/openrocket: OpenRocket simulation software – https://github.com/openrocket/openrocket An exemple of the construction & flight of a rocket with the help of the simulator : - Making a High Speed Rocket https://invidious.snopyta.org/watch?v=EjaoYGTinus&local=true #DIY#RocketSimulator#Simulator#flight#rocket#OpenRocket

12
ПретходнаСтраница 1 од 2Следна