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 слични објави

Пребарај: #irannucleartalks

当前筛选 #irannucleartalks清除筛选
Crypto M - Crypto News

@CryptoM · Post #65222 · 12.04.2026 г., 04:13

🚀 Iran Nuclear Talks Fail as Tensions Impact Crypto Markets U.S. Vice President Vance announced that after 21 hours of negotiations, no agreement was reached with Iran, which refused to abandon its nuclear weapons program. According to BlockBeats, U.S. President Donald Trump had previously warned that failure in talks would lead to 'total destruction' of Iran. The ongoing conflict has caused volatility in the crypto market for weeks, compounded by tariff disputes, with Bitcoin dropping below $70,000 earlier this month. Analysts had predicted that a successful agreement could push Bitcoin to $80,000, while a breakdown might see it fall to $65,000. On the bullish side, data from on-chain wallets indicate that the largest Bitcoin holders, known as whales, have continued to buy during the peak of geopolitical turmoil rather than sell. Their reasoning is that if the conflict escalates, disrupting oil supplies from the Persian Gulf, rising oil prices and inflation could delay Federal Reserve rate cuts, benefiting scarce assets like Bitcoin and gold. Conversely, Peter Schiff, a gold trader and long-time Bitcoin skeptic, argues that as tensions rise, investors will flee Bitcoin for gold. Schiff predicts a Bitcoin 'collapse,' asserting that gold is the only true safe haven during wartime, and suggests that insiders may be profiting from market fluctuations driven by conflict news. If Trump follows through on his 'total destruction' threat, both stock and crypto markets are likely to experience simultaneous sell-offs. In terms of future developments, Vice President Vance maintained a firm stance at a press conference but did not rule out further negotiations. The Iranian parliamentary speaker demanded a ceasefire in Lebanon and the unfreezing of assets before engaging in formal talks. For Bitcoin traders, the next 72 hours hinge on two critical issues: whether a ceasefire agreement can be sustained and if Trump will escalate the conflict. Meanwhile, whale wallets continue to buy at current prices, indicating that some large investors are betting on stabilization of the situation. #IranNuclearTalks#CryptoMarket#Bitcoin#GeopoliticalRisk#Trump#OilPrices#Inflation#Gold#MarketVolatility#WhaleInvesting#MiddleEastConflict#Lebanon#USPolitics#BTC