python

Back Open Paginator
16.03.2026 23:16
h4ckernews (@h4ckernews@mastodon.social)

Oxyde – Pydantic-native async ORM with a Rust core

github.com/mr-fatalyst/oxyde




Show Original Post


16.03.2026 21:38
AdamOnza (@AdamOnza@mastodon.online)

#tic80 website might be mad at me.. Maybe you're only allowed so many crashes a day? Fine. I'll do stuff in #Python Tkinter!




Show Original Post


16.03.2026 21:31
smagnusson (@smagnusson@graphics.social)

I just tested several of my main add-ons with the 5.1 release candidate and ... next to no errors? Awesome!

nView tests are still waiting for Blender's pypi release, so we'll see with that one. The only error I found was with BLint because of the move to Python 3.13 (can't manipulate locals() directly anymore, dangit).

I was considering making a video on upgrading to 5.1, but if these are all fine, I may have to think of something else.

#Blender3D #Python #B3D




Show Original Post


16.03.2026 20:26
mrswats (@mrswats@fosstodon.org)

Sneaky little release of yapping

pypi.org/project/yapping/

#Python




Show Original Post


16.03.2026 19:21
treyhunner (@treyhunner@mastodon.social)

Python Tip #75 (of 365):

Don't use the string split() method for splitting lines. Use the splitlines() method instead.

Instead of calling split with "\n":
lines = poem.split("\n")

Use the splitlines method:
lines = poem.splitlines()

The string splitlines method will:

• Trim a trailing newline (if there is one)
• Split by "\r\n", "\n", or "\r"

More on splitlines: pym.dev/splitlines/

This week's daily tips are all about string methods in Python.




Show Original Post


16.03.2026 19:11
247CodeGirl (@247CodeGirl@mastodon.social)

Season 1 Lesson 9 Part 2 - Your First Steps Python Zfill Explained Fast Zero Padding Numbers Easily





Show Original Post


16.03.2026 19:09
w (@w@makertube.net)

functools.partial

makertube.net/w/a35LMTmTLUd4RG




Show Original Post


16.03.2026 19:08
w (@w@makertube.net)

Modelo de dados em Python #short

makertube.net/w/pTryFL2k3XWnyF




Show Original Post


16.03.2026 19:07
w (@w@makertube.net)

Serialização em Python

makertube.net/w/i8oCPz5t93V98o




Show Original Post


16.03.2026 18:46
jnpn (@jnpn@mastodon.social)

fun typing conformance tests for python typecheckers

pyrefly.org/blog/typing-confor




Show Original Post


16.03.2026 18:40
w (@w@makertube.net)

The Sine Planet

makertube.net/w/s1YpTaGGdWcGiV




Show Original Post


16.03.2026 18:03
davep (@davep@fosstodon.org)

BlogMore v1.16.0; now with a bit more control over some sidebar stuff.

blog.davep.org/2026/03/16/blog

#python #programming #ssg #blogging #ai #copilot




Show Original Post


1 ...316 317 318 319 320 321 322 323 324 325 326 ...1594
UP