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

TGINSIGHT SIMILAR POSTS

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

Изворен канал @pythonotes · Post #281 · 18 авг.

Что-то вы гоните насчет "привычного вида формата 755 и 644". Я вот вообще не понял что это!😳 Действительно, что означают цифры которые мы получили в прошлом посте? Это кодировка, заключающая в себе режимы доступа к файлу. Подробней можно почитать в статье про chmod. Там можно увидеть альтернативное обозначение того же самого с помощью символов r w x, что значит чтение, запись, исполнение. Чтобы преобразовать восьмеричное число в такое обозначение в Python есть готовая функция >>> stat.filemode(0o755) '?rwxr-xr-x' Мы видим 3 группы по 3 символа, дающие 3 типа доступа для 3 типов юзеров. А что за знак вопроса в начале? Давайте передадим в эту функцию необрезанное значение от os.stat >>> stat.filemode(os.stat(path).st_mode) 'drwxr-xr-x' Это данные, которые мы безжалостно обрезали в прошлый раз😼 Первый символ обозначает тип объекта. Это может быть файл (-), директория (d) или симлинк (l). Вот простая схема данной кодировки [1][3][3][3] │ │ │ │ │ │ │ └──> Others Permissions │ │ └─────> Group Permissions │ └────────> Owner Permissions └───────────> File Type (разверните экран если вы с телефона) Если вы попробуете получить пермишены для симлинка то получите пермишены для файла >>> path = '.venv/bin/python3' >>> stat.filemode(os.stat(path).st_mode) '-rwxr-xr-x' Чтобы получить свойства именно симлинка, нужно это явно указать >>> stat.filemode(os.stat(path, follow_symlinks=False).st_mode) 'lrwxrwxrwx' #tricks#basic

Резултати

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

Пребарај: #salaries

当前筛选 #salaries清除筛选
Addis Standard

@addisstandardeng · Post #21882 · 30.03.2026 г., 12:13

News: #Tigray denies reports of #federal salary budget release, calls claims “misleading” Tigray Communication Affairs Bureau has dismissed circulating reports that the federal government has released #budget allocations for the #salaries of public servants in Tigray, describing the claims as “baseless” and “intended to mislead the public.” In a statement issued on 29 March, the Bureau said no such funds have been received to date, citing information from the regional Bureau of Finance and Resource Mobilization. “The information being disseminated is completely false,” the statement said, warning that the reports are designed to create mistrust between the regional administration and civil servants. The Bureau’s statement comes amid continued uncertainty over the restoration of federal budgetary support to Tigray which was blocked since October 2025. Read more: https://addisstandard.com/?p=56184

Addis Standard

@addisstandardeng · Post #21830 · 25.03.2026 г., 12:52

News: Teachers, students in #Tigray protest federal #salary suspension, call for international pressure Senior officials of the Tigray Interim Administration, alongside educators and students, staged large-scale protests across several towns in Tigray, including the capital #Mekelle, on 24 March 2026, condemning the federal government’s decision to “suspend civil servant #salaries” and calling for international intervention, regional broadcaster, Tigrai Television televised. The demonstrations, which drew thousands of teachers and students, underscored a deepening humanitarian and education crisis in the regional. Regional authorities say the federal government has halted salary payments for teachers since October 2025, a move they argue violates constitutional provisions and international legal obligations. #Amanuel_Assefa, Vice President of the Tigrai Interim Administration, told protesters that the suspension of budgets and salaries is a deliberate effort Read more: https://addisstandard.com/?p=56054