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

Резултати

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

Пребарај: #transfer

当前筛选 #transfer清除筛选
Libreware

@libreware · Post #1357 · 10.11.2024 г., 16:45

Warpinator for Android is an unofficial port of Linux Mint's file sharing tool of the same name. It is fully compatible with the original protocol and allows for easy transfer of files between Android and Linux devices. Features: - Automatic discovery of compatible services on local network - Works on WiFi or hotspot, no internet connection needed - Transfer any type of files quickly and easily - Receive entire directories - Run multiple transfers in parallel - Share files from other applications - Limit who can connect using a group code - Option to start on boot - Does not require your location or any other unnecessary permissions Android https://github.com/slowscript/warpinator-android https://f-droid.org/packages/slowscript.warpinator/ Linux https://github.com/linuxmint/warpinator Windows https://winpinator.swisz.cz https://github.com/slowscript/warpinator-windows #share#transfer

Libreware

@libreware · Post #1354 · 09.11.2024 г., 13:56

LocalSend free, open-source multiplatform app that allows you to securely share files and messages with nearby devices over your local network without needing an internet connection. https://github.com/localsend/localsend #share#transfer

Libreware

@libreware · Post #1353 · 09.11.2024 г., 13:04

FlyingCarpet Cross-platform AirDrop. File transfer between Android, iOS, Linux, macOS, and Windows over ad hoc WiFi. No network infrastructure required, just two devices with WiFi chips in close range. https://github.com/spieglt/FlyingCarpet #transfer#share

Libreware

@libreware · Post #1076 · 02.05.2022 г., 02:23

Sharik Share files across devices with Sharik! The app works with a Wi-Fi connection or a Wi-Fi Hotspot. No internet connection is needed. It is available for Android, iOS, Windows, Mac, and Linux. Download - https://github.com/marchellodev/sharik/releases Source - https://github.com/marchellodev/sharik/ @foss_Android #share#transfer

Libreware

@libreware · Post #961 · 30.06.2021 г., 11:55

Now KDE Connect can hook up your Windows machine as well! KDE Community @ https://www.twitter.com/kdecommunity/status/1409808049116700673/ The Windows version of KDE Connect gets official support and you can get the beta version right now from the Microsoft Store. Exclusive link-only access: https://microsoft.com/store/apps/9N93MRMSXBF0 https://kdeconnect.kde.org https://f-droid.org/repo/org.kde.kdeconnect_tp #kdeconnect#transfer#windows

Libreware

@libreware · Post #988 · 17.10.2021 г., 01:00

tFileTransporter Transfer apps, images and files to Android Devices and PCs Use UDP Broadcast or WiFi P2P create connections, Use TCP protocol to transfer files. This program builds with RxJava and Kotlin Coroutines. Android: https://github.com/Tans5/tFileTransporter F-droid (Izzy repo): https://f-droid.org/packages/com.tans.tfiletransporter/ Play Store: https://play.google.com/store/apps/details?id=com.tans.tfiletransporter Desktop: https://github.com/Tans5/tFileTransfer_desktop #tFileTransporter#transfer#share

纯情男高

@hanzichen · Post #1469 · 27.12.2025 г., 23:58

Warpdrop Warpdrop is a privacy-first, peer-to-peer file sharing tool that allows users to securely transfer files directly between terminals and browsers with ephemeral links, powerful NAT traversal, and complete self-hosting control. 🔗 Links: - Website - Features - Screenshots - Support group - Source code Developer: Mohd Zaid ❤️ Support the Project If this project makes your life easier, here are a few quick ways to show some love: ⭐ Star the repo/app ☕ Buy a coffee for the developer 🛠 Contribute code, issues, or pull-requests 🏷 Tags: #Website#P2P#Tools#Transfer

Libreware

@libreware · Post #1221 · 11.02.2024 г., 23:51

. KDE Connect is an app that makes it easy to connect your DeGoogled phone and/or Linux Phone to your Linux laptop using your phone's hot spot, or any network. KDE Connect can do these things: - Share files - Share clipboard - Control Slideshows w/phone - Send/Receive texts on laptop (Using KDE Connect Taskbar Indicator) - Control laptop media player - Move laptop mouse pointer 1. Install KDE Connect on phone Use KDEConnect on F-Droid 2. Install on laptop For Debian based distros: sudo apt install kdeconnect On your laptop firewall, make sure you open ports that KDE Connect uses. To do this, open up terminal and enter these commands: sudo ufw allow 1714:1764/udp sudo ufw allow 1714:1764/tcp sudo ufw reload 3. Connect both devices - Connect both to the same network - Open app on both devices - Find and pair devices ⚡️@LinuxTechIndex #KDEConnect#transfer#Files#share

Libreware

@libreware · Post #1003 · 27.10.2021 г., 01:09

Croc Easily and securely send things from one computer to another Features - allows any two computers to transfer data (using a relay) - provides end-to-end encryption (using PAKE) - enables easy cross-platform transfers (Windows, Linux, Mac, Android) - allows multiple file transfers - local server or port-forwarding not needed - ipv6-first with ipv4 fallback https://github.com/schollz/croc https://f-droid.org/en/packages/com.github.howeyc.crocgui/ 📡@NoGoolag📡@Libreware #croc#transfer#send#share

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