python

Back Open Paginator
13.03.2026 21:01
chakie (@chakie@toot.community)

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 #rust #backend




Show Original Post


13.03.2026 20:55
JGraber (@JGraber@mastodon.social)

Friday #322: Embed Markdown for a Python Friday -

pythonfriday.dev/2026/03/322-e




Show Original Post


13.03.2026 20:44
ellie (@ellie@ellieayla.net)

Does VSCode (eg in pylance) have a feature to display a clickable link to the language standard library documentation (eg docs.python.org/3/search.html?) for a selected stdlib symbol? Like, added below the (often insufficient) docstring?

Not a third-party extension (eg kiidxatlas.python-hover).

#python #vscode #askfedi




Show Original Post


13.03.2026 20:16
nellowtcs (@nellowtcs@mastodon.social)

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.




Show Original Post


13.03.2026 20:13
davep (@davep@fosstodon.org)

Today sees the escape of BlogMore v1.13.0, with a feature suggested by @andyc

blog.davep.org/2026/03/13/blog

#python #blogging #ssg




Show Original Post


13.03.2026 19:58
diazona (@diazona@techhub.social)

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 😅

#Python




Show Original Post


13.03.2026 19:40
radwebhosting (@radwebhosting@mastodon.social)

🚀 Deploy on Rocky Linux

This guide walks through the steps to deploy Odoo on Rocky Linux VPS using PostgreSQL, virtual environment, 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 👉 blog.radwebhosting.com/deploy-





Show Original Post


13.03.2026 19:10
treyhunner (@treyhunner@mastodon.social)

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).




Show Original Post


13.03.2026 19:00
gtronix (@gtronix@infosec.exchange)

"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."

alternativeto.net/news/2026/3/

#Python




Show Original Post


13.03.2026 18:34
247CodeGirl (@247CodeGirl@mastodon.social)

Season 1 Lesson 8 Part 5 - Your First Steps Format Method Controlling How Values Appear in Text





Show Original Post


13.03.2026 18:32
habr (@habr@zhub.link)

Как обнаружить заказной негатив с помощью скриптов

По данным Data Insight 30% отказов от покупок связано с заказным негативом. Раньше ботов вычисляли по шаблонным фразам, но сейчас спамеры массово генерируют жалобы через LLM. Модерация геосервисов пропускает такой контент. Формально отзывы уникальны и не нарушают правила площадок. Ручная проверка тысяч комментариев требует десятков часов работы аналитика и не исключает человеческий фактор. Визуально отличить качественный фейк от мнения реального клиента стало невозможно. Противостоять генеративным сетям можно только программными методами. Автоматизировать поиск аномалий в поведении пользователей помогают скрипты на Python. Этот контур защиты включает парсинг данных с обходом лимитов API, вычисление временных выбросов через Z-оценку и семантический анализ текстов с учетом морфологии русского языка (через библиотеку Natasha ). Это базовый алгоритм, который позволяет перевести защиту репутации из ручной разметки в измеримый технический процесс.

habr.com/ru/articles/1010014/

#python #zscore #machine_learning #анализ_отзывов #боты #антифрод #репутация #фейковые_отзывы #геосервисы #парсинг_сайтов




Show Original Post


13.03.2026 18:27
diazona (@diazona@techhub.social)

RE: mas.to/@yantor3d/1162230390422

#Python #TypoOfTheDay




Show Original Post


1 ...332 333 334 335 336 337 338 339 340 341 342 ...1593
UP