My experiment with gRPC turned out ok. Ported a few endpoints over from the old stuff to the Rust based server and it’s all running fine. I don’t foresee any capacity issues either as there’s so little traffic. I guess Rust isn’t that much slower than Python. If I suddenly get lots of traffic I have a positive problem which can be solved later.
#Python Friday #322: Embed Markdown for a Python Friday #RAG - #ai
https://pythonfriday.dev/2026/03/322-embed-markdown-for-a-python-friday-rag/
Does VSCode (eg in pylance) have a feature to display a clickable link to the language standard library documentation (eg https://docs.python.org/3/search.html?q=foo) for a selected stdlib symbol? Like, added below the (often insufficient) docstring?
Not a third-party extension (eg kiidxatlas.python-hover).
After months of work, I just released the first public version of Saikuro, a cross-language invocation fabric that lets different languages call each other without RPC boilerplate.
TypeScript, Python, Rust, and C# adapters, all talking to a shared Rust runtime.
#rustlang #typescript #python #dotnet #opensource
Today sees the escape of BlogMore v1.13.0, with a feature suggested by @andyc
https://blog.davep.org/2026/03/13/blogmore-1-13-0.html
Is there a tool that validates ~/.pypirc? I just went looking and it seems surprisingly hard to find one.
"Fun" fact: the LLM answer is to use twine's --dry-run option which of course doesn't exist 😅
🚀 Deploy #Odoo on Rocky Linux #VPS
This guide walks through the steps to deploy Odoo on Rocky Linux VPS using PostgreSQL, #Python virtual environment, #Nginx reverse proxy, and systemd. This setup is production-ready and appropriate for business deployments.
What Is Odoo?
Odoo is an open-source business management platform that integrates many core business functions into one ...
Continued 👉 https://blog.radwebhosting.com/deploy-odoo-on-rocky-linux-vps/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.social #rockylinux #selfhosted #selfhosting #letsencrypt #postgresql #opensource

Python Tip #72 (of 365):
You can redirect all printed output in Python with contextlib.redirect_stdout
from contextlib import redirect_stdout
import io
with redirect_stdout(io.StringIO()) as output:
print("hello")
printed_text = output.getvalue()
The redirect_stdout context manager temporarily sets Python's standard output file-like object (sys.stdout) to a different file object. It's most commonly used with an in-memory fake file object (the io.StringIO class).
"Qt Creator 19 brings minimap, easier configuration of remote devices, MCP server, and more"
"Qt Creator19 has been released, updating this cross-platform integrated development environment for C++, JavaScript, Python, and QML."
Season 1 Lesson 8 Part 5 - Your First Steps Format Method Controlling How Values Appear in Text #softwaredeveloper #jupyternotebook #dataanalysis #dataengineer #pythoncode #pythonprogramming #learncoding #python #codingtutorial
Как обнаружить заказной негатив с помощью скриптов
По данным Data Insight 30% отказов от покупок связано с заказным негативом. Раньше ботов вычисляли по шаблонным фразам, но сейчас спамеры массово генерируют жалобы через LLM. Модерация геосервисов пропускает такой контент. Формально отзывы уникальны и не нарушают правила площадок. Ручная проверка тысяч комментариев требует десятков часов работы аналитика и не исключает человеческий фактор. Визуально отличить качественный фейк от мнения реального клиента стало невозможно. Противостоять генеративным сетям можно только программными методами. Автоматизировать поиск аномалий в поведении пользователей помогают скрипты на Python. Этот контур защиты включает парсинг данных с обходом лимитов API, вычисление временных выбросов через Z-оценку и семантический анализ текстов с учетом морфологии русского языка (через библиотеку Natasha ). Это базовый алгоритм, который позволяет перевести защиту репутации из ручной разметки в измеримый технический процесс.
https://habr.com/ru/articles/1010014/
#python #zscore #machine_learning #анализ_отзывов #боты #антифрод #репутация #фейковые_отзывы #геосервисы #парсинг_сайтов
RE: https://mas.to/@yantor3d/116223039042281420