The new PyEditor brings #Python to #Java. It embeds the modern GraalPython runtime and exposes a pythonic wrapper of the #ESA_SNAP Java API called SnapKit. This lets you build graphs, read/write products, compute new bands, and even interact with SNAP views from Python. #EarthObservation
Check out the SnapKit API: https://buff.ly/1VLvobC

Whenever I see nested loops in a comprehension, I think "flattening".
Read more 👉 https://trey.io/aeo9fg
🚨 Hốt hoảng tại Quảng Trị: Phát hiện trăn đất nặng hơn 30 kg cuộn tròn cạnh loa trong phòng khách. Người đàn ông đã trình báo cơ quan chức năng. #trăn #QuảngTrị #độngvật #vietnam #wildlife #python #breakingnews
Особенности Python, о которых вас точно спросят на техническом собеседовании. Часть 2
Привет, Хабр! Меня зовут Бартенев Евгений, я автор курса
https://habr.com/ru/companies/yandex_praktikum/articles/960812/
#python #программирование #собеседования_python #собеседования_разработчика #техническое_собеседование
Die Anzahl und die Kapazität der #Batteriespeicher in Deutschland wachsen. Ich habe begonnen, die Daten der #Bundesnetzagentur für #Stromspeicher ähnlich wie bei #Balkonsolar und #Windenergie aufzubereiten. Momentan implementiere ich erste Grafiken. Im Artikel findet ihr meinen Arbeitsstand. Bitte lasst mich weitere Ideen wissen, wenn Euch etwas Interessantes einfällt.
#Energiewende #Datenanalyse #VibeCoding #Batterietechnologie #Python #energy
certbot failed. Of course it did. lol.
tired.
well not today then.
Still looking for some help getting things restored.
#osmnx #OSM #OpenStreetMap Code at: https://github.com/villares/sketch-a-day/tree/main/2025/sketch_2025_11_05
More sketch-a-day: https://abav.lugaralgum.com/sketch-a-day
If you like this, support my work:
https://www.paypal.com/donate/?hosted_button_id=5B4MZ78C9J724
https://liberapay.com/Villares
https://wise.com/pay/me/alexandrev562 #Processing #Python #py5 #CreativeCoding

Identity checks whether two pointers point to the same object.
Read more 👉 https://trey.io/8slkex
Библиотека Python для доступа к данным ЦБ: cbrapi
cbrapi - бесплатная библиотека с открытым исходным кодом на Python, которая превращает сложное взаимодействие с SOAP API Центрального банка Российской Федерации в простой и понятный инструмент.
https://habr.com/ru/companies/okama/articles/963262/
I just self-certified as a #PSF "Contributing Member". "Contributing Members are people who dedicate at least five hours per month volunteering on Python-related projects that advance the mission of the PSF. Python-related projects can be open-source software projects using #Python that you contribute to, Python user groups / conferences you organize, etc."
I plan to mostly work on #MicroPython, for which I do not receive or seek compensation. Multiply that 60 hours a year by a fair hourly rate and it well out-strips the small monetary donation I also made. Yes, it doesn't move the needle on ensuring the PSF is adequately funded, but writing software for the common good is something I've long been passionate about.
🚀 Monday Progress Report | November 3, 2025 🌱
• #Beyond365DaysOfCode Day 309
• #100DaysOfCode Day 309
• #freeCodeCamp 📖 Daily Reading:
✅ 1 article on freeCodeCamp News
✅ 1 article on Daily.dev
🧰 Productivity Tools
• GitHub Projects: Added “Game Off 2025” column and first tasks
💻 Learning Platforms
• TigerByte: Initialized assets structure and added .gitkeep files
• SOTGD: Outlined concept for Shadows of the Golden Door (Pygame) 🔥
#Python #Pygame #GameDev #CodeEveryday #GameOff2025

I've been thinking about lazy imports. If I have a package and the __init__.py is just a bunch of import statements and that's how I'm expected to access anything in the package, importing anything in the package will still import the entire package, right?
So if I want to actually just import the one thing I would need to do `lazy from <package>.<file> import <whatever>` and I would need to actually know the file. Or am I missing something?