Skip to Content Skip to Navigation
Profile image for Python Podcast

Python Podcast

@show@python-podcast.de
Ein deutschsprachiger Podcast rund um die Programmiersprache Python.
29 Posts Posts & Replies 33 Following 30 Followers Search
Python Podcast boosted

I have just released Blacknoise 1.0.

In versioning terms it's a big jump from the previous 0.0.6 release. Code-wise nothing much changed. The 1.0 version should communicate that I consider the package to be production-ready (after using it in production for two months) and also that I intend to continue maintaining the package.

Get it while it's hot:
pypi.org/project/blacknoise/

Python Podcast boosted

Now that Python's default tracebacks are becoming colorized as part of 3.13, it would be fun to also make the filenames terminal hyperlinks with the file:// scheme, so clicking them would open them with the system handler.

(here's how that works: gist.github.com/egmontkob/eb11
unfortunately there's no agreed way to also link to a specific line (yet))

Python Podcast boosted

Enormous news! the Python Software Foundation now has a 5 year commitment with Fastly to deliver @pypi, us.pycon.org, and much more. We appreciate you and your continued investment in the community, Fastly!

Python Podcast boosted

The difference between “continuous deployment”, “continuous delivery” and “continuous integration” is the difference between the eternal torments of sisyphus, tantalus and prometheus, respectively

Edited 2d ago
Python Podcast boosted

At the airport en route to and feeling all kinds of feelings but let me start with this one, which too often remains unstated in the constantly frustrating and difficult world of software development:

I love Python. I love the Python community. It is such an enormous array of gifts (the code, the ecosystem, the social events) that has enabled so much of my career and my *life* that I want to express my gratitude.

Python Podcast boosted

Now in public beta: 1Password SDKs for Python, Javascript, and Go 🎉

Available as open-source libraries, the SDKs can be used to create, read, update, and delete items saved in 1Password with more features on the way.

Share your thoughts below.

blog.1password.com/sdk-beta/?u

Python Podcast boosted

Come for wisdom on tox & Nox – stay for unrelated gems that will improve your life!

youtu.be/ImBvrDvK-1U mastodon.social/@treyhunner/11

Python Podcast boosted

‼️ Update for some of you who wondered what I was referring to last week.

The news gets reported slowly. in.mashable.com/tech/74212/sun

My resolve to dump Google will continue until I reach Google Zero.

Sieht so aus als ob es dieses Jahr einen pytest dev Sprint gäbe: github.com/pytest-dev/sprint @the_compiler 🥳

Python Podcast boosted

Bis zum 26. April um 18 Uhr könnt ihr noch am Gewinnspiel teilnehmen, um das DevOps-Buch (devops-buch.net) von @svij zu gewinnen!

Näheres dazu in den letzten beiden Folgen!

@rheinwerkverlag

Neue Episode: @svij, Dominik und @jochen unterhalten sich über DevOps (Redux): python-podcast.de/show/devops-

Python Podcast boosted

OH: Dance like no one is watching, love like you’ve never been hurt - but code like all your repos are public.

Python Podcast boosted

🎲 Do you like Python's little CLIs? For example:

$ python -m http.server
$ python -m webbrowser www.python.org
$ python -m uuid
$ python -m calendar

What about adding one to `random`?

$ python -m random curry "fish n chips" tacos
curry

$ python -m random 6
6

$ python -m random 2.5
1.6423361547011504

Give your feedback on my proposal at
discuss.python.org/t/command-l

If there's support we *might* be able to get it into 3.13 before May's beta cutoff! 🤞

Python Podcast boosted

Oh, yes! 💃

Looking forward to this @gvwilson

Python Podcast boosted
Python Podcast boosted

Wir haben noch Platz am Mittwoch beim in :
www.meetup.com/de-DE/karlsruhe

Ich würde mich freuen, wenn ihr vorbei kommt und ich euch was über Python logging erzählen darf :)

Edited 39d ago
Python Podcast boosted

Congrats to the team over at Khan Academy for adding a fully interactive Python programming course!
www.khanacademy.org/computing/
That includes a Python coding environment in the browser and a gallery of Python programs. Filter by "Python" here:
www.khanacademy.org/computing/

Edited 42d ago
Python Podcast boosted

A useful article on debugging Python. Tools improve the process, but in my experience the quickest way to identify a bug's root cause is methodically challenging your assumptions about what is happening. With deeper knowledge and gut feeling about the code you can be faster by reordering (not skipping!) your assumptions you need to investigate. Then check them based on the observed erratic behaviour.

www.syntaxerror.tech/syntax-er

Edited 47d ago
Python Podcast boosted

When I co-created the automated testing tool me and others insisted on a no-dependency approach because anything under test could interfere with it .... But I also was increasingly aware that a malicious merged PR in pytest, now a world wide deployed tool in many companies and governmental institutions, could cause a massive backdooring cataclysm ... At least for the first decade pytest folks were friends with each other and knew each other physically, that kind of helps a bit I guess?

Python Podcast boosted

🎉 The Django News Newsletter Issue 225: 🎉 Sarah "New Django Fellow!" Boyce 🎉

Djangonaut Space debrief, Flask-like Django in a single file, optimzing the system check framework, and more.

django-news.com/issues/225#sta

Python Podcast boosted

"Fixing a Bug in PyPy's Incremental GC", the promised blog post on my recent debugging Odyssey:
www.pypy.org/posts/2024/03/fix

Python Podcast boosted

Rise and shine, Djangonauts! ☀️

We have recorded and planned a few episodes of Django Brew Emoji django ☕ already, but we are curious what sort of topics you might be interested in?

Please take our poll to let us know! 🙌

And comment down below if you have other ideas!

Options: (choose one)

Python Podcast boosted
Python Podcast boosted

Also, to bring back Armin Rigo's quite scary assignment puzzle: what is the value of 'a' after the following statement?:

(a, b) = a[b] = {}, 5

Python Podcast boosted

✍️ New post on some work I’ve done optimizing Django’s system check framework.

💡 This is a bit of a long post, about 3k words. I hope you learn something from it.

adamj.eu/tech/2024/03/23/djang