What is a portable way (e.g. for Linux and Windows) to get the current user’s username? Something similar to os.getuid() would be nice:
>>> os.getuid() 42 >>> os.getusername() 'slartibartfast'
The pwd module works for Unix only. Some people suggest that getting the username under Windows can be complicated in certain circumstances (e.g., running as a Windows service).
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
Look at getpass module
import getpass getpass.getuser() 'kostya'
Availability: Unix, Windows
p.s. Per comment below “this function looks at the values of various environment variables to determine the user name. Therefore, this function should not be relied on for access control purposes (or possibly any other purpose, since it allows any user to impersonate any other).”
Method 2
You best bet would be to combine os.getuid() with pwd.getpwuid():
import os
import pwd
def get_username():
return pwd.getpwuid( os.getuid() )[ 0 ]
Refer to the pwd docs for more details:
http://docs.python.org/library/pwd.html
Method 3
You can also use:
os.getlogin()
Method 4
You can probably use:
os.environ.get('USERNAME')
or
os.environ.get('USER')
But it’s not going to be safe because environment variables can be changed.
Method 5
These might work. I don’t know how they behave when running as a service. They aren’t portable, but that’s what os.name and ifstatements are for.
win32api.GetUserName() win32api.GetUserNameEx(...)
See:
http://timgolden.me.uk/python/win32_how_do_i/get-the-owner-of-a-file.html
Method 6
If you are needing this to get user’s home dir, below could be considered as portable (win32 and linux at least), part of a standard library.
>>> os.path.expanduser('~')
'C:\Documents and Settings\johnsmith'
Also you could parse such string to get only last path component (ie. user name).
See: os.path.expanduser
Method 7
To me using os module looks the best for portability: Works best on both Linux and Windows.
import os
# Gives user's home directory
userhome = os.path.expanduser('~')
print "User's home Dir: " + userhome
# Gives username by splitting path based on OS
print "username: " + os.path.split(userhome)[-1]
Output:
Windows:
User’s home Dir: C:Usersmyuser
username: myuser
Linux:
User’s home Dir: /root
username: root
No need of installing any modules or extensions.
Method 8
Combined pwd and getpass approach, based on other answers:
try:
import pwd
except ImportError:
import getpass
pwd = None
def current_user():
if pwd:
return pwd.getpwuid(os.geteuid()).pw_name
else:
return getpass.getuser()
Method 9
psutil provides a portable way that doesn’t use environment variables like the getpass solution. It is less prone to security issues, and should probably be the accepted answer as of today.
import psutil
def get_username():
return psutil.Process().username()
Under the hood, this combines the getpwuid based method for unix and the GetTokenInformation method for Windows.
Method 10
For UNIX, at least, this works…
import commands
username = commands.getoutput("echo $(whoami)")
print username
edit:
I just looked it up and this works on Windows and UNIX:
import commands
username = commands.getoutput("whoami")
On UNIX it returns your username, but on Windows, it returns your user’s group, slash, your username.
—
I.E.
UNIX returns: “username”
Windows returns: “domain/username”
—
It’s interesting, but probably not ideal unless you are doing something in the terminal anyway… in which case you would probably be using os.system to begin with. For example, a while ago I needed to add my user to a group, so I did (this is in Linux, mind you)
import os
os.system("sudo usermod -aG "group_name" $(whoami)")
print "You have been added to "group_name"! Please log out for this to take effect"
I feel like that is easier to read and you don’t have to import pwd or getpass.
I also feel like having “domain/user” could be helpful in certain applications in Windows.
Method 11
Using only standard python libs:
from os import environ,getcwd getUser = lambda: environ["USERNAME"] if "C:" in getcwd() else environ["USER"] user = getUser()
Works on Windows (if you are on drive C), Mac or Linux
Alternatively, you could remove one line with an immediate invocation:
from os import environ,getcwd user = (lambda: environ["USERNAME"] if "C:" in getcwd() else environ["USER"])()
Method 12
I wrote the plx module some time ago to get the user name in a portable way on Unix and Windows (among other things):
http://www.decalage.info/en/python/plx
Usage:
import plx username = plx.get_username()
(it requires win32 extensions on Windows)
Method 13
You can get the current username on Windows by going through the Windows API, although it’s a bit cumbersome to invoke via the ctypes FFI (GetCurrentProcess → OpenProcessToken → GetTokenInformation → LookupAccountSid).
I wrote a small module that can do this straight from Python, getuser.py. Usage:
import getuser print(getuser.lookup_username())
It works on both Windows and *nix (the latter uses the pwd module as described in the other answers).
Method 14
None of the above worked in my case (scroll down to the actual solution).
The problem I’m getting with all solutions is the wrong username when running commands with sudo:
psutilsoulution:
$ python3
>>> import psutil
>>> psutil.Process().username()
'ubuntu' # OK!
$ sudo su
$ python3
>>> import psutil
>>> psutil.Process().username()
'root' # OK!
$ sudo python3
>>> import psutil
>>> psutil.Process().username()
'root' # WRONG, should be ubuntu!
getpasssolution:
$ python3
>>> import getpass
>>> getpass.getuser()
'ubuntu' # OK!
$ sudo su
$ python3
>>> import getpass
>>> getpass.getuser()
'root' # OK!
$ sudo python3
>>> import getpass
>>> getpass.getuser()
'root' # WRONG, should be ubuntu!
pwd+os.getuidsolution:
$ python3
>>> import os, pwd
>>> pwd.getpwuid( os.getuid() )[ 0 ]
'ubuntu' # OK!
$ sudo su
$ python3
>>> import os, pwd
>>> pwd.getpwuid( os.getuid() )[ 0 ]
'root' # OK!
$ sudo python3
>>> import getpass
>>> getpass.getuser()
'root' # WRONG, should be ubuntu!
os.getloginworks a bit different, but still wrong:
$ python3
>>> import os
>>> os.getlogin()
'ubuntu' # OK!
$ sudo su
$ python3
>>> import os
>>> os.getlogin()
'ubuntu' # WRONG, should be root!
$ sudo python3
>>> import os
>>> os.getlogin()
'ubuntu' # OK!
os.getenvgives the same results:
$ python3
>>> import os
>>> os.getenv('SUDO_USER', os.getenv('USER'))
'ubuntu' # OK!
$ sudo su
$ python3
>>> import os
>>> os.getenv('SUDO_USER', os.getenv('USER'))
'ubuntu' # WRONG, should be root!
$ sudo python3
>>> import os
>>> os.getenv('SUDO_USER', os.getenv('USER'))
'ubuntu' # OK!
Switching SUDO_USER and USER gives the wrong result in sudo python3 case.
Actual solution (non-portable)
Solution is a bit tricky and rely on the default root home directory location but works for all cases:
$ python3
>>> import os
>>> 'root' if os.path.expanduser('~') == '/root' else os.getenv('SUDO_USER', os.getenv('USER'))
'ubuntu' # OK!
$ sudo su
$ python3
>>> import os
>>> 'root' if os.path.expanduser('~') == '/root' else os.getenv('SUDO_USER', os.getenv('USER'))
'root' # OK!
$ sudo python3
>>> import os
>>> 'root' if os.path.expanduser('~') == '/root' else os.getenv('SUDO_USER', os.getenv('USER'))
'ubuntu' # OK!
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0