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
📍 Kruger National Park, South Africa 🇿🇦
🦁 Kruger National Park is one of the most famous safari destinations in the world. It is home to Africa's "Big Five": lions, elephants, buffalo, rhinos, and leopards 🐘. The vast area of the park allows you to see wild animals in their natural habitat, and the diverse landscapes, from savannas to forests, make every trip unforgettable. 🌿
🚗 Tourists can explore the park by car or go on an organized safari with guides. Exciting sunsets, rare bird species, and the opportunity to see African life up close make this place a true adventure. The park is open year-round and ready to give bright emotions to every visitor! 🦓
#travel#safari#wildlife
safari
noun
uk /səˈfɑː.ri/ us /səˈfɑːr.i/
an organized journey to look at, or sometimes hunt, wild animals, especially in Africa.
[Source] 🐒🦒🦏
@googlefactss
#Africa#safari