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

Резултати

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

Пребарај: #oas

当前筛选 #oas清除筛选
Russian Consulate in Cape Town

@rusconct · Post #2315 · 08.03.2025 г., 06:02

🎙 Foreign Ministry Spokeswoman Maria Zakharova’sanswer to a media question about Russia’s stance with respect to the Organisation of American States ❓Question: How would you characterise the current stage of Russia’s relations with the OAS? 💬Maria Zakharova: As is well known, the Russian Federation obtained the status of Permanent Observer to the Organisation of American States in 1992 and has developed constructive relations with this association of Western Hemisphere states over three decades. Cooperation has been successfully advanced both with the #OAS itself and its specialised agencies, including the Inter-American Drug Abuse Control Commission (CICAD), the Inter-American Committee against Terrorism (CICTE), and others. We note that a number of leading Latin American countries did not support the OAS Permanent Council’s April 2022 decision to suspend Russia’s observer status. At the same time, practical collaboration with regional states has continued to develop dynamically at all levels. The Russian Side remains open to restoring full-fledged engagement with the OAS, as evidenced by the appointment of Russia’s new Ambassador to the United States, Alexander Darchiev, to concurrently serve as Permanent Observer to the OAS.

Hashtags

Alex Kowalski | Trade

@kowalskitrade · Post #9 · 06.05.2024 г., 15:01

📣Top 7 unlocks for the week Major unlocks of tokens from May 6 to May 12: ➡️#APT for $102.91 million (2.64% of capitalization, 12.05) ➡️#ICP for $43.02 million (0.7% of capitalization, 11.05) ➡️#KARATE for $29.66 million (❗️199% of capitalization, 12.05) ➡️#MASA for $27.80 million (❗️160.1% of capitalization, 11.05) ➡️#GMT for $23.68 million (5.39% of capitalization, 9.05) ➡️#DAO for $13.25 million (5.84% of capitalization, 9.05) ➡️#OAS for $10.17 million (8.82% of capitalization, 12.05).

GitHub Trends

@githubtrending · Post #14911 · 03.07.2025 г., 15:30

#javascript#hacktoberfest#oas#open_source#openapi#openapi_specification#openapi3#openapi31#rest#rest_api#swagger#swagger_api#swagger_js#swagger_oss#swagger_ui Swagger UI is a tool that helps developers and users interact with APIs. It creates a visual interface from OpenAPI specifications, making it easy to understand and use APIs without needing to know the underlying code. This tool benefits users by providing clear documentation and allowing them to test API methods directly from the interface. It also supports collaboration and compliance with the latest OpenAPI standards, making it easier to develop and consume APIs efficiently[1][3][5]. https://github.com/swagger-api/swagger-ui