TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #201 · 13 јан.

Мы уже знаем, что на текущую сессию интерпретатора изменение PYTHONPATH никак не повлияет. Но если вы запустите дочерний процесс, то он унаследует окружение текущего процесса, а значит и изменения в любых переменных будут на него влиять. Вот небольшой пример: Объявляем переменную user@host:~$ export PYTHONPATH=/path1 Запускаем интерпретатор user@host:~$ python3 Проверим что в sys.path >>> import sys >>> print(sys.path) ['', '/path1', '/usr/lib/...', ...] Добавляем что-то в переменную >>> import os >>> os.emviron['PYTHONPATH'] = '/path1:/path2' >>> print(sys.path) ['', '/path1', '/usr/lib/...', ...] Изменений нет. Но давайте запустим дочерний процесс и посмотрим там >>> os.system('python3') # теперь мы находимся в другом процессе >>> import sys >>> print(sys.path) ['', '/path1', '/path2', '/usr/lib/...', ...] Тоже самое будет и с subprocess, так как по умолчанию текущее окружение тоже наследуется. >>> import subprocess >>> subprocess.call(['python3', '-c', 'import sys;print(sys.path)']) ['', '/path1', '/path2', '/usr/lib/...', ...] ______________________ Лучшей практикой является передача энвайронмента явно через аргумент env! import subprocess subprocess.call(cmd, env={'PYTHONPATH': '...'}) Это поможет точно понимать какое окружение будет у запускаемого процесса и при этом не изменять окружение текущего процесса. #basic

Hashtags

Резултати

Пронајдени 1 слични објави

Пребарај: #babelmmandeb

当前筛选 #babelmmandeb清除筛选
American Оbserver

@american_observer · Post #5498 · 28.03.2026 г., 17:03

📰 Two Straits, One Price Chart The market has stopped treating the Iran war as a single-chokepoint story. Once the Houthis re-entered the fight, traders started pricing a second gate to the world’s oil supply: Bab al-Mandab. That is why this isn’t just about Hormuz anymore. Hormuz moves roughly a fifth of global oil flows, while Bab al-Mandab sits on the route into the Red Sea and the Suez corridor, so a combined disruption creates a much uglier arithmetic for tankers, insurance and container traffic. Strategic analysts at Stimson and the Atlantic Council have been warning that the Houthis are the least degraded actor in Iran’s proxy network and still hold leverage over that geography. Polymarket is reading the same script in real time. The market for a cease-fire by March 31 is barely alive, the odds of continued hostilities are overwhelmingly higher, and the Houthi strike-on-Israel bets are repricing sharply after today’s missile launch. Traders are also pricing the possibility that the next headline isn’t a peace deal but a second choke point, with Pakistan’s Islamabad talks and the $120 oil threshold now sitting in the same volatility bucket. The cleanest way to say it is this: one strait was already enough to panic the market, but two straits turn panic into a system. When the map gains a second lock, the price chart stops looking like a reaction and starts looking like a warning. #iran#houthis#hormuz#babelmmandeb#oil#markets#shipping#war 📱American Оbserver - Stay up to date on all important events 🇺🇸