PyLadiesCon

🚨 Don’t miss your chance to speak at PyLadiesCon 2025! 💜🐍
Our global, online, multilingual conference is back Dec 5–7—and we want your voice on the program!

✨ New to speaking? We’re here to support you.
🎤 Got a story, tool, or lesson to share? This is your moment.
📅 CFP closes August 8 — submit now!
👉 pretalx.com/pyladiescon-2025/c

#PyLadiesCon #CFP #Python #WomenInTech #OpenSource

Honza Javorek

@zoul Yeah, values, sustainability and the long-term health of the community… welcome to #Python 😉 That's what we actually do. The programming language is just a bait 😀

Jul 22, 2025, 07:27 · · · 0 · 0
Thibaud Colas :django:

At #EuroPython lots of people are asking how many projects are built with @django. The answer is about 500k to 1M. And yet we only raise $250k per year to support the project, yep, sustainability in open source is hard ☺️

#Python #OpenSource #Sustainability #Django

Jul 18, 2025, 10:14 · · · 1 · 0
Paolo Melchiorre

Brett Cannon, Python Core Developer, is presenting the opening keynote of the second day of EuroPython 2025, on "Why it took 4 years to get a lock files specification." 🐍

#EuroPython #EuroPython2025 #Python #Requirements

CC @europython @brettcannon

Kushal Das :python: :tor:

For dependencies please don’t mention any upper bounds, @brettcannon reminds everyone in his #EuroPython keynote #python

bignose

#Python has always had strict typing. Unlike weakly-typed systems (e.g. JavaScript, PHP) in Python an object has one exact type, and will refuse to implicitly pretend it's another type. (The “strong versus weak” axis: Python is strongly typed.)

@hell Are you maybe thinking of Python's dynamic typing, where by default a name has no type associated with it? (The “dynamic versus static” axis: Python's names are dynamically typed.)

Type annotations are part of the language now and can be checked.

Jul 17, 2025, 01:54 · · · 0 · 0
HoldMyType

C'mon yaml has key-val , so does json , python has dicts too, there s nothing that #yaml has and #python doesn't ( anchors and aliases , sure python has modules you can import from other file , okay it ll be simpler with yaml and idk a workflow that uses loops so that doesn't factor in to talk about #bash )
Why do #devops folks cling to #yaml

n_to

Hat hier jemand Erfahrung mit #openpyxl? Alles was ich damit an Excel-Dateien erstelle, fürht dazu, dass mich #Excel anmotzt und die Datei reparieren möchte. Die Inhalte sind dann zwar vollständig, aber dieser unnütze Dialog nervt doch sehr. Es tritt sogar mit dem Codebeispiel aus der Projektdoku auf. Weiß jemand einen Rat? #followerpower #fragfedi #python #boost

Yann Büchau :nixos:

@geotech_msc I wrote a :python: #Python API for the #OpenSenseMap once, with which you can pretty much do anything you want in terms of setup, data upload and download:

pypi.org/project/sensemapi/

Just a `pip install sensemapi` away

#sensemapi

Client Challenge

pypi.org
Debacle

@plantarum

Works for me in #JavaScript, #Python, and #Rust buffers, but not in #C, where I get:

rx--translate-bounded-repetition: rx ‘**’ range error

This works for me, though:

(defun my-latex-preview (&optional ARG)
(interactive "P")
(let ((the-mode major-mode))
(org-mode)
(org-latex-preview ARG)
(funcall the-mode)))

#elisp #Emacs #TeXLaTeX #orgmode

Jul 15, 2025, 21:32 · · · 0 · 0
Zelphir Kaltstahl

I am currently looking for a #job . I am an experienced (senior) software developer/engineer with 7y of experience. If someone is looking for a capable software engineer or knows someone looking for engineers, please let me know.

I do #python #scheme #django #docker and aim for reproducible software. I learned some #devops and #ansible and can manage servers. Used to do #fullstack dev work, before everything needed to be an SPA.

I am looking for #remote work or work in #berlin or #potsdam .

Oliver Andrich

Django turned 20 yesterday! Apart from Python, no other tech has stuck with me this long. Happy birthday, you brilliant little framework.

someonewho.codes/django-turned

#python #django

Django turned 20!

I’ve jumped on and off tech trends for 35 years. But…

Someone Who Codes
Yann Büchau :nixos:

Wait, does #uv just make #Python work without #FHS shenanigans on :nixos: #NixOS? 🤨

Jul 14, 2025, 09:24 · · · 0 · 0
Aaron Longchamps

Rack Root update: tonight I finally got the search page working and passing parameters the way I need it to. There's a search box in the top right hand corner that will take in a given string and (eventually) go ask the API for objects that match the search terms.

This took a while to put together since entering a search term will redirect you to `/search?q=foo` and that renders properly the first time. With Vuetify however, if you enter another search term while on that page, the app sees you're already on `/search` and doesn't update the values on the page, even though the search parameter is different.

The solution was thankfully found in a GitHub issue (linked below) where other people were looking for the same kind of functionality. This also taught me about the Navigation Guards that Vue/Vuetify come with to handle page navigation/movements. The app knows when you're on the same page and will make decisions based on that.

During my testing I just echoed the search parameter back to the user, but now that the hard part is done, I just need to write the API for it and render that on the frontend. Surely there won't be any complications with asking the API for multiple different objects back... that'll really test my database and python skills.

github.com/vuejs/router/issues

#rackroot #programming #homelab #justkeeplearning #vuetify #webdev #developer #fastapi #python