python

Back Open Paginator
01.03.2026 10:58
driscollis (@driscollis@mastodon.social)

Only 3 more days before my latest book Kickstarter ends!

Learn all about type hints and type checkers for Python in my newest book.

If we hit my stretch goal, I will make signed paperbacks an option too!




Show Original Post


01.03.2026 10:20
bbelderbos (@bbelderbos@fosstodon.org)

ruff, uv, pydantic-core, polars, tiktoken — all Rust under the hood.

The #Python ecosystem reaches for Rust when performance matters.




Show Original Post


01.03.2026 10:19
StatisticsGlobe (@StatisticsGlobe@mastodon.social)

Short reminder that the Statistics Globe Hub starts tomorrow!

The lower rate of $13 per month is still available until the official start tomorrow. Join now to secure this price before it increases to $15 per month.

More info: statisticsglobe.com/hub





Show Original Post


01.03.2026 10:00
europython (@europython@fosstodon.org)

You can help shape EuroPython 2026's programme! 🗳️

Vote if you:
✅ Registered for EuroPython 2022–2025
✅ Submitted a 2026 proposal

Why vote?
🚀 Help build a programme you’ll love
🚀 See what goes into top Python talks
🚀 Get a cute voting companion to share!

Vote now: europython.eu/voting
Deadline: March 5th!

#europython #conference #europython2026 #python #opensource #programme





Show Original Post


01.03.2026 10:00
conansysadmin (@conansysadmin@mstdn.social)

I now hunt the great hairy mammoth. Learn to enchant a great snake to send messages in its realm: cromwell-intl.com/open-source/ #OpenSource #Python #TwitterMigration





Show Original Post


01.03.2026 09:47
feed (@feed@igeek.gamer-geek-news.com)

🐧 7 Hot Free and Open Source Application Servers for Python

An application server is software which provides the business logic for an application program. Here's our recommended servers for Python. The post 7 Hot Free and Open Source Application Servers fo...

📰 Source: LinuxLinks
🔗 Link: https://www.linuxlinks.com/free-open-source-python-application-servers/

#Python




Show Original Post


01.03.2026 09:42
habr (@habr@zhub.link)

Pandas на Python: От чтения CSV до сложной аналитики за 1 статью

Сколько раз вы пытались открыть в Excel файл на пару миллионов строк и смотрели на зависший белый экран под звук взлетающего кулера? А сколько раз писали трехэтажные циклы for в чистом Python, чтобы просто сгруппировать данные и посчитать среднее? Pandas — это Excel на максималках и швейцарский нож любого разработчика и аналитика. В этой статье я собрал абсолютную выжимку: 10 главных шагов для работы с таблицами. Разберем вечную путаницу между loc и iloc, правильную очистку от пропусков, группировки и джойны (merge).

habr.com/ru/articles/1005114/

#python #python3 #python_для_начинающих #pandas #pandas_dataframe #pandas_merge




Show Original Post


01.03.2026 08:51
CuratedHackerNews (@CuratedHackerNews@mastodon.social)

Cracking the Python Monorepo

gafni.dev/blog/cracking-the-py

#python




Show Original Post


01.03.2026 08:40
radwebhosting (@radwebhosting@mastodon.social)

How to Run Self-Hosted Link-in-Bio Tool with on

This article provides a guide for how to run self-hosted Link-in-Bio tool with LinkStack on AlmaLinux VPS.
🛠️ How to Run Self-Hosted Link-in-Bio Tool with LinkStack on AlmaLinux VPS
This guide walks you through installing and running LinkStack, a free and open-source alternative to Linktree, on an ...
Continued 👉 blog.radwebhosting.com/how-to-





Show Original Post


01.03.2026 08:11
mopicmp (@mopicmp@mastodon.social)

Python Tip: Multiple Assignment

# Swap without temp variable
a, b = b, a

# Multiple returns
def min_max(lst):
return min(lst), max(lst)

lo, hi = min_max([3,1,4,1,5])

Python's tuple packing/unpacking makes swaps and multiple returns elegant.

raccoonette.gumroad.com/l/Pyth




Show Original Post


01.03.2026 08:10
mopicmp (@mopicmp@mastodon.social)

Python Tip: itertools.chain()

from itertools import chain
lists = [[1,2], [3,4], [5,6]]
flat = list(chain.from_iterable(lists))
# [1, 2, 3, 4, 5, 6]

chain.from_iterable() flattens nested iterables without creating intermediate lists....

raccoonette.gumroad.com/l/Pyth




Show Original Post


01.03.2026 07:29
WanderingInDigitalWorlds (@WanderingInDigitalWorlds@sunny.garden)

Oof, I just realized that I haven't been taking notes about any of the Programming stuff that I learned. 😬

I'll finish this Introduction to Programming and cycle back to the beginning in order to write notes about it (and actually retain information).

It's a happy accident as I'll retain more of the lesson that way.

#Programming #Python




Show Original Post


1 ...404 405 406 407 408 409 410 411 412 413 414 ...1591
UP