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

Резултати

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

Пребарај: #perpetualcontracts

当前筛选 #perpetualcontracts清除筛选
Venture Village Wall 🦄

@venturevillagewall · Post #3993 · 26.01.2025 г., 22:00

Bitcoin Supply Drops Below 1M 🟠 Only 1,056,700 Bitcoin left to mine, forever. This significant milestone emphasizes Bitcoin's scarcity as its supply rapidly decreases. 📈 Hyperliquid achieves record $157B monthly volume in perpetual contracts, projecting $0.5T by March 2025 if trends continue. 🇫🇷 French Senate approves 2025 budget including an annual ‘unproductive wealth’ tax on unrealized cryptocurrency gains. Awaiting vote in the National Assembly. 🚨 180M USDT transferred from Tether Treasury to Bitfinex. Details from Whale Alert. #Bitcoin#Crypto#Tax#Finance#Volume#France#Investment#Currency#USDT#Tether#Bitfinex#WhaleAlert#PerpetualContracts#Market#Scarcity#Trading#Budget#NationalAssembly#Future

Venture Village Wall 🦄

@venturevillagewall · Post #4300 · 04.03.2025 г., 04:00

Vietnam to Draft Crypto Legal Framework Vietnam's Prime Minister has tasked the Ministry of Finance and State Bank to create a legal framework for cryptocurrencies by the end of March. Notably, Vietnam ranked among the top three globally in cryptocurrency ownership, with 21% of its population involved. More details: here. In related news, $1 billion was liquidated from the cryptocurrency market recently. Arthur Hayes remains bullish, expecting the previous cycle's high of $70,000 to hold as support. Coinbase's Coin50 Index introduces new assets, and a hacker laundered $1.39 billion in ETH through THORChain. Lastly, FTX/Alameda transferred 3.03 million SOL to various wallets. #Vietnam#Crypto#Bitcoin#ETH#FTX#SOL#Blockchain#Finance#Hayes#Coinbase#Regulation#Market#Investment#BullCycle#Liquidation#Hacker#THORChain#PerpetualContracts#Assets#Liquidity#Alameda