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

TGINSIGHT SIMILAR POSTS

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

Изворен канал @pythonotes · Post #183 · 23 ное.

Python + bash Если вам часто требуется запускать shell команды из Python-кода, какой способ вы используете? Самый низкоуровневый это функция os.system(), либо os.popen(). Рекомендованный способ это subprocess.call(). Но это всё еще достаточно неудобно. Советую обратить своё внимание на очень крутую библиотеку sh. Что она умеет? 🔸 удобный синтаксис вызова команд как функций # os import os os.system("tar cvf demo.tar ~/") # subprocess import subprocess subprocess.call(['tar', 'cvf', 'demo.tar', '~/']) # sh import sh sh.tar('cvf', 'demo.tar', "~/") 🔸 простое создание функции-алиаса для длинной команды fn = sh.lsof.bake('-i', '-P', '-n') output = sh.grep(fn(), 'LISTEN') в этом примере также задействован пайпинг 🔸 удобный вызов команд от sudo with sh.contrib.sudo: print(ls("/root")) Такой запрос спросит пароль. Чтобы это работало нужно соответствующим способом настроить юзера. А вот вариант с вводом пароля через код. password = "secret" sudo = sh.sudo.bake("-S", _in=password+"\n") print(sudo.ls("/root")) Это не все фишки. Больше интересных примеров смотрите в документации. Специально для Windows💀 юзеров #libs#linux

Hashtags

Резултати

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

Пребарај: #hedginglosses

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

@CryptoM · Post #64743 · 09.04.2026 г., 17:24

🚀 Energy Giants Face Challenges Amid Rising Oil and Gas Prices Due to Iran Conflict Rising oil and gas prices resulting from the ongoing conflict in Iran might initially appear beneficial for energy companies. Bloomberg posted on X, however, that the situation is more complex due to supply disruptions, shipping blockades, and hedging losses. These factors are creating a challenging environment for energy giants, impacting their ability to capitalize on the price surge. The conflict has led to significant disruptions in the supply chain, affecting the transportation and availability of oil and gas. Additionally, shipping blockades are further complicating the situation, making it difficult for companies to maintain steady operations. Hedging losses are also a concern, as companies that had previously locked in prices at lower rates are now facing financial setbacks. As the situation unfolds, energy companies are navigating a complex landscape, balancing the potential benefits of higher prices with the operational challenges posed by the conflict. #EnergyGiants#OilPrices#GasPrices#IranConflict#SupplyDisruptions#ShippingBlockades#HedgingLosses#EnergyCompanies#FinancialSetbacks#OperationalChallenges