Any #blender #python scripters can help me out? Basically looking to add some procedural scene generators, and I'm looking for tips on how to organise my code.
Aircall is hiring Senior Software Engineer - Bellevue
🔧 #javascript #python #ruby #typescript #aws #azure #gcp #seniorengineer
🌎 Seattle, Washington
⏰ Full-time
🏢 Aircall
Job details https://jobsfordevelopers.com/jobs/senior-software-engineer-bellevue-at-aircall-io-jan-23-2025-bd6339?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
This week's Python office hours are in 24 hours. They're free for all to attend.
Between answering questions, I may show off the absurd (but very useful) hacks I've been making to my local #Python REPL environment.
Join me tomorrow!
https://pym.dev/office-hours/schedule/
A simple project of #Python kernel for #Jupyter lab and hub. Uses uv to avoid duplication, and having one venv per notebook (automated !)
https://gitlab.com/metal3d/jupyter-uv-venv
We've gone live with the #PyOhio 2026 website, and with it, our new Sponsor Prospectus is available to review. For 2026 we're offering new tiers of sponsorship as well as speaking opportunities for #sponsors. While run by volunteers, events like PyOhio wouldn't be possible without the generous contributions of our sponsors, so please consider sponsoring or requesting that your employer sponsor us to make 2026 the best PyOhio ever!
#Python #Conference #Sponsorship
🛰️ Starting a satellite image processing course with Python. Super exciting!
#satellite #python #technology

🎉 A massive thank you to the @django Software Foundation for supporting PyCon UK 2025! 🙌
Your generosity helps us create an inclusive and welcoming space for the Python community to grow and connect — we couldn’t do it without you 💜🐍
🌐 Learn more about the Django Software Foundation: https://www.djangoproject.com/foundation/
🐍 PyCon UK 2025 Sponsors page: https://2025.pyconuk.org/sponsors/
#Python #Django #Community #PyConUK2025 #DjangoSoftwareFoundation #DSF #PythonProgramming

🇫🇮 PyCon Finland speaker spotlight!
🎤 Shiny for Python: Reactive Web Apps Made Simple by Mohamed El Fodil Ihaddaden
📅 Friday 17 October 2025, 14:30, Jyväskylä, Finland
🎟 Get your ticket now! https://fi.pycon.org
#Python #PyCon #Finland #PyConFI

Zurück zum Code: Bouncing Balls mit Py5 und Proceso
Wie ich schon in meiner jüngsten Update-Meldung zu Py5, dem Processing-Python3-Modul, angedeutet hatte, interessiert mich, welche Code-Änderungen notwendig sind, wenn ich Py5-Skripte nach Proceso, der PyScript-Version von Processing und Python, portiere (oder vice versa). Also habe ich als ersten Test das sattsam bekannte Bouncing-Balls-Beispiel einmal in Proceso implementiert https://kantel.github.io/posts/2025091001_bouncing_balls/ #Python #Py5 #Proceso #Processing #PyScript

Wing Python IDE version 11.0.4 has been released, with support for Python 3.14, improved Python code analysis and code warnings, and other minor enhancements: https://wingware.com/news/2025-09-08 #python #pythonlanguage #AIDevelopment

Scaling asyncio on Free-Threaded Python
https://programming.dev/post/37203525
Did you know the Python interpreter saves the result of its last expression to "_"? The cool thing is that it ignores None results, so you can call help() or print() and still have your expensive computation result in `_`.
so you can do this:
```
expensive_computation.run() # returns 5
print("oh no")
help(expensive_computation.run)
important_result = _
print(important_result)
5 # phew
```
#python