溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python實(shí)現(xiàn)得到當(dāng)前登錄用戶信息的方法

發(fā)布時間:2020-10-11 05:13:31 來源:腳本之家 閱讀:229 作者:輕舞肥羊 欄目:開發(fā)技術(shù)

本文實(shí)例講述了python實(shí)現(xiàn)得到當(dāng)前登錄用戶信息的方法。分享給大家供大家參考,具體如下:

在linux 環(huán)境下,python 更多的被當(dāng)做 替代 SHELL 的工具語言, 其實(shí)linux 中,本身就有很多命令是通過python擴(kuò)展的,我想記錄下一些常用的命令以及使用方式,以便以后查看.

第一部分:python得到得到當(dāng)前登錄用戶信息

def get_current_user():
  try:
    # pwd is unix only
    import pwd 
    return pwd.getpwuid(os.getuid())[0]
  except ImportError, e:  
    import getpass
    return getpass.getuser()
def get_default_group_for_user(user):
  import grp
  group = None
  try:
    gid= pwd.getpwnam(user)[3]
    groups = grp.getgrgid(gid)[0]
  except KeyError, e:
    print( 'Failed to find primary group from user %s' ,user)
    return group

注意的是 pwd, grp 模塊只能在linux,unix 下才有的. 我在網(wǎng)上搜索到了另一個在window 下得到用戶組相關(guān)信息的方法,但需要安裝  Python Win32 Extensions 模塊。可以在這里下載 (http://starship.python.net/crew/mhammond/win32/),使用方法如下:

import win32net
import platform
import getpass
#Get current hostname and username
sHostname = platform.uname()[1]
sUsername = getpass.getuser()
#Define account memberships to test as false
memberAdmin = False
memberORA_DBA = False
for groups in win32net.NetUserGetLocalGroups(sHostname,sUsername):
  #If membership present, set to true
  if groups == 'Administrators':
    print "member of admin"
    memberAdmin = True
  if groups == 'ORA_DBA':
    print "member of orA_DBA"
    memberORA_DBA = True
#if all true pass, else fail
if (memberAdmin == True) and (memberORA_DBA == True):
  print "membership is good"
else:
  print "current account does not have the proper group membership"

得到用戶名,當(dāng)然只是第一步,后面還涉及到修改權(quán)限等操作。后面有時間再記錄.

希望本文所述對大家基于Django框架的Python程序設(shè)計(jì)有所幫助。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI