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

Пребарај: #strat

当前筛选 #strat清除筛选
🗺 Travel the World | Private Expeditions

@expeditionsworldwide · Post #11 · 08.08.2020 г., 05:16

Today I am adding a Stratis coin (#STRAT) to my portfolio, paired with #USDT on Binance. The coin looks attractive for a long-term investment. Purchasing it in my 10$ Experiment portfolio. The coin ranks 124th in the CoinMarketCap rating. Briefly about the project: #STRAT is a blockchain-based platform that makes it easy to develop, test and deploy C# applications on the dotNET framework. STRATIS will act as a blockchain-as-a-service (BAAS) platform for corporations and institutions. This will help the enterprises that have joined the project to quickly implement blockchain technology for use in various industries. 🎯 The mission of the STRATIS platform is to become a one-stop shop for all blockchain-based products. The technology is a clone of the core bitcoin code, with several advanced features and written in C# instead of C++. #STRAT increased in value from August 2016 ($ 0.023) to the summer of 2017 (about $ 7.71), which is 49,000% in 10 months. It became one of the few currencies to be adopted and implemented very quickly thanks to numerous trusted exchanges and cryptocurrency wallets such as Poloniex, Jaxx and Ledger. At the moment, the price is moving in a neat upward channel. We have already retested the mirror support level 0.5440 twice. We have 2 support zones around 0.50 and 0.40. According to the Fibonacci grid, growth is expected by 70% to the level of 0.9588, which is near the psychological $1. This is the 6th coin in my portfolio. Before that, I bought for $10 such coins as: #NEO, #EOS, #REP, #XRP and of course #BTC.