Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a portable way to get the current user's username in Python (i.e., one that works under both Linux and Windows, at least). It would work like os.getuid:

>>> os.getuid()
42
>>> os.getusername()
'slartibartfast'

I googled around and was surprised not to find a definitive answer (although perhaps I was just googling poorly). The pwd module provides a relatively easy way to achieve this under, say, Linux, but it is not present on Windows. Some of the search results suggested that getting the username under Windows can be complicated in certain circumstances (e.g., running as a Windows service), although I haven't verified that.

share|improve this question

7 Answers

up vote 174 down vote accepted

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)."

share|improve this answer
36  
It appears that 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). – Greg Hewgill May 8 '09 at 22:33
Nice, not sure how I missed that! – Jacob Gabrielson May 8 '09 at 22:36
1  
I know why I missed it: the "getpass" module doesn't appear anywhere near the top of the search results in the little html-help thingy that comes with 2.6.1 when I search for "user". (I'm not sure it appears at all, for that matter.) – offby1 May 8 '09 at 22:37
4  
Works in OS X as well, btw. – dF. May 9 '09 at 3:10
5  
OS X is considered Unix for purposes of the libref. – Ignacio Vazquez-Abrams May 9 '09 at 7:50
show 2 more comments

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

share|improve this answer
10  
Alternatively (slightly nicer to read): pwd.getpwuid(os.getuid()).pw_name. – Brian M. Hunt Jun 21 '10 at 14:27
11  
Doesn't work on Windows (as stated in the original question) – truan.hick Feb 3 '12 at 13:28

You can also use:

 os.getlogin()
share|improve this answer
6  
On linux, getlogin() returns the name of the "user logged in on the controlling terminal of the process." It therefore fails when there is no controlling terminal, e.g., in a mod_python application. – Vebjorn Ljosa Nov 10 '09 at 23:56
4  
Not available for Windows – Walker Hale IV Oct 17 '11 at 3:45
this works on windows 8, 64b, attached to a domain – scape Dec 17 '12 at 19:08

You can probably use:

os.getenv('USERNAME')

But it's not going to be safe because environment variables can be changed.

share|improve this answer
3  
os.getenv(...) is deprecated in favour of os.environ[...]. – Mike Graham Feb 17 '11 at 12:12
2  
Shouldn't it be USER instead of USERNAME? – Karl Bartel Sep 27 '12 at 12:58
@MikeGraham os.getenv doesn't seem to be deprecated..? – dbr Oct 2 '12 at 6:47
yes (at least under Linux it is) simply: os.getenv('USER') – ngeek Dec 19 '12 at 23:20

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)

share|improve this answer

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 "if" statements are for.

win32api.GetUserName()

win32api.GetUserNameEx(...)

See: http://timgolden.me.uk/python/win32_how_do_i/get-the-owner-of-a-file.html

share|improve this answer
2  
Er, the word 'portable' is in question.. – JBRWilkinson Apr 5 '11 at 9:49
7  
This answer is at least as useful as the (useless) 25-vote upvoted unix-only answer. – Tom B Feb 14 '12 at 18:27

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: http://docs.python.org/2/library/os.path.html#os.path.expanduser

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.