python

Back Open Paginator
09.02.2026 14:20
jukkan (@jukkan@mstdn.social)

We moved the logic of our FinModeler financial modeling app, built in , to use the new Dataverse SDK for Python.

It used to take ~10 minutes to generate the full Excel workbooks with dynamic formulas. Now, the same output takes a few seconds.🤯

Yeah, using Office Scripts and Excel as the engine originally was a bit crazy. But it was the way for us folks. Now, with , and some Azure Functions, we're on another level.💪

finmodeler.com/financial-model





Show Original Post


09.02.2026 14:20
davidr (@davidr@hachyderm.io)

I wish #python wasn't shoving #timezones down my throat.

I work with global sensor #data. *Everything* is *always* UTC. Even for display, nobody wants local time--we have UTC clocks up in the control room.

Sure, I can make my datetimes UTC. The problem is that if there's a timezone, "helpful" functions and libraries often try to change or display it as local (sometimes they call this a bug and sometimes a feature, either way it's always the wrong thing to do).

When I can use bare datetimes, no third-party code is able to change it--which is exactly what I want. It's already right, don't do anything!

But now I have to use timezones. And I have to sanitize my entire codebase to ensure that it continues to have the same property it currently has, i.e. effectively completely ignoring timezones.




Show Original Post


09.02.2026 13:34
python_lyon (@python_lyon@piaille.fr)

Prochain meetup #python à #lyon : jeudi 19 février !

Rendez-vous à 19h dans les locaux de Zenika, où @TitiMoby nous présentera plein de chemins d’apprentissage du code, des outils, des plateformes…

Pour s’inscrire ⬇️
meetup.com/fr-fr/python-afpy-l




Show Original Post


09.02.2026 13:12
adamchainz (@adamchainz@fosstodon.org)

✍️ New post introducing icu4py: Python bindings to ICU (International Components for Unicode), the official translation and localization library from Unicode.

Use this package to split text into characters/words/sentences/lines, or to flexibly translate strings around complex pluralization rules.

The post includes some musings on my “agentic engineering” approach to building the package.

adamj.eu/tech/2026/02/09/pytho

#Python #AI #i18n #l10n




Show Original Post


09.02.2026 12:35
daesorin (@daesorin@hachyderm.io)

Rewriting my bash scripts in python … I think this is the best way to learn a language.

My bash-scripting skills are average at best, but my python skill is nigh-abmyssal, but I am gradually building them 😁

#bash #python #devops #linux




Show Original Post


09.02.2026 11:39
mous_tik (@mous_tik@discuss.systems)

Hey everyone, I need some help...

My project started simple: #Django #backend, #SvelteKit #frontend. It’s still that, but the 'file noise' is killing me.

Between hidden config folders (.stuff), scripts, and deep nesting, I’m getting lost. Sometimes after a weekend off, I don’t even remember where I’m supposed to put new files.

As a self-taught dev, my projects always end up a bit messy, but this is my biggest one yet and I really want to clean it up to stay on track.

How do you keep things tidy? Do you use multiple IDE windows? Specific monorepo structures? Or do you just close everything and pray? 😂

Any advice on how to refactor this mess into something professional?

```txt
Pokedex/
├─ pokedev/ (Main Repo)
│ ├─ backend/
│ │ ├─ backend/ (Recursive issue?)
│ │ │ ├─ users/
│ │ ├─ config/
│ │ ├─ pokedev/ (Third level nesting!)
│ │ │ ├─ cards/
│ │ │ ├─ stacks/
│ │ ├─ requirements/
│ ├─ frontend/ (SvelteKit)
│ │ ├─ src/
│ ├─ infrastructure/
│ ├─ compose.yaml
```

#BuildInPublic #Programming #devOps #python #architecture #svelte

If you want look after all..................

```txt
Pokedex/
├─ .github/
├─ .pytest_cache/
├─ .ruff_cache/
├─ pokedev/
│ ├─ backend/
│ │ ├─ .devcontainer/
│ │ ├─ .envs/
│ │ ├─ .github/
│ │ ├─ .ipython/
│ │ ├─ .venv/
│ │ ├─ backend/
│ │ │ ├─ contrib/
│ │ │ ├─ media/
│ │ │ ├─ static/
│ │ │ ├─ templates/
│ │ │ ├─ users/
│ │ │ ├─ __init__.py
│ │ ├─ bin/
│ │ ├─ compose/
│ │ ├─ config/
│ │ ├─ docs/
│ │ ├─ fixtures/
│ │ ├─ locale/
│ │ ├─ pokedev/
│ │ │ ├─ cards/
│ │ │ ├─ constants/
│ │ │ ├─ contributions/
│ │ │ ├─ stacks/
│ │ │ ├─ templates/
│ │ │ ├─ typedb/
│ │ │ ├─ __pycache__/
│ │ ├─ requirements/
│ │ ├─ staticfiles/
│ │ ├─ tests/
│ │ ├─ utility/
│ │ ├─ webpack/
│ │ ├─ .dockerignore
│ │ ├─ .env
│ ├─ docs/
│ ├─ frontend/
│ │ ├─ .svelte-kit/
│ │ ├─ build/
│ │ │ ├─ client/
│ │ │ ├─ server/
│ │ ├─ node_modules/
│ │ ├─ playwright-report/
│ │ ├─ scripts/
│ │ ├─ src/
│ │ │ ├─ components/
│ │ │ ├─ lib/
│ │ │ ├─ routes/
│ │ ├─ static/
│ │ ├─ test-results/
│ │ ├─ tests/
│ ├─ infrastructure/
│ ├─ scripts/
│ ├─ Casddyfile
│ ├─ compose.jelastic.yaml
│ ├─ compose.prod.yaml
│ ├─ compose.yaml.js
│ ├─ debug_avatar.py
│ ├─ local_cards.json
├─ scripts/
├─ .Business
```




Show Original Post


09.02.2026 11:35
jmaupetit (@jmaupetit@mamot.fr)

🐍 cmd-chat: a truly peer-to-peer, end-to-end encrypted #CLI chat that leaves NO logs.

> Every "secure" messenger still stores metadata somewhere. This doesn't. It's just two terminals talking over an encrypted tunnel. Nothing written to disk, ever.

github.com/diorwave/cmd-chat

#python




Show Original Post


09.02.2026 11:26
ploum (@ploum@mamot.fr)

Announcing the release of #offpunk 3.0

ploum.net/2026-02-09-offpunk3.

#smallweb #smolnet #python #cli #gemini #geminiprotocol #gopher #offlinefirst




Show Original Post


09.02.2026 11:22
habr (@habr@zhub.link)

Цветаева и Ахмадулина. Связь поэтических миров проявляет Python

C помощью Python ищу цветаевские следы в творчестве Ахмадулиной и обнаруживаю диалог поэтических миров двух авторов.

habr.com/ru/articles/992210/

#python #sbert #векторное_представление_слов #лемматизация #анализ #чтение #поэзия #проза




Show Original Post


09.02.2026 11:12
habr (@habr@zhub.link)

Визуализация 2+1D в Виртуальной Вселенной

Предыдущие части: « Геометрическая головоломка на выходные », « Электродинамика виртуальной Вселенной », « Механика виртуальной Вселенной », « Квантовая механика виртуальной Вселенной (Часть I) », « Квантовая механика виртуальной Вселенной (Часть II) » « Релятивизм виртуальной Вселенной » « Космология виртуальной Вселенной (Часть I) » « Космология виртуальной Вселенной (Часть II) » « Электричество, проводимость и сверхпроводимость в виртуальной Вселенной » « Атом в Виртуальной Вселенной (Часть I) » « Атом в Виртуальной Вселенной (Часть II) » « Атом в Виртуальной Вселенной (Часть III) [Химия] » Здравствуйте, мои уважаемые читатели. Следующим шагом я хотел приступить к описанию ядра атома в рамках описанной ранее теории. Но по комментариям и при личном обсуждении, пришёл к выводу, что теория хоть и является минималистичной, но всё-же, интуитивному её пониманию сильно мешает то, что всё обсуждение строится в 3+1 геометрических измерениях. С одной стороны — их не 11, как в теории суперструн, но и 4 — это сложно для понимания для неподготовленного человека. Да и, кого я обманываю — даже подготовленному проще оперировать формулами, чем образами в пространствах, размерностью выше трёх. Но в этой модели очень важно понимать её онтологию, суть процесса. Формулы являются лишь языком, позволяющим (вот тут будет тавтология) описать формализм системы и дать возможность оценить её качественно и количественно. Эти размышления привели меня к мысли о необходимости дать расширенное визуальное описание системы. Я не придумал ничего лучше, чем понизить размерность. Исходно, у нас система представляет собой трёхмерную сферу S 3 . А давайте рассмотрим такую же модель, но на сфере S 2 . Да, удастся показать не всё — например, спин 1/2 здесь показать не выйдет. Но кое что должно проявиться и дать интуицию.

habr.com/ru/articles/994360/

#научнопопулярное #физика #математика #геометрия #визуализация #python




Show Original Post


09.02.2026 11:07
jmaupetit (@jmaupetit@mamot.fr)

🐍⚡ Speeding up Pillow's open and save

TIL: the Tachyon profiler is coming in #Python 3.15 (PEP 799)

hugovk.dev/blog/2026/faster-pi




Show Original Post


09.02.2026 11:01
PythonPeak (@PythonPeak@mastodon.social)

Python vs PHP Tip Jar Replay Lock

Livestream tips should hit once, not ten times.

#python #php #viralcoding #codecomparison #idempotency #retries #payments #backendsafety #creatoreconomy #tips #reliability

youtube.com/watch?v=LnoqM9-1LEc




Show Original Post


1 ...515 516 517 518 519 520 521 522 523 524 525 ...1588
UP