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

I'm looking for a cross platform solution for getting current login/username in Python.

I was surprised that os.getlogin() is only supported under Unix and even there is not necessarly returning what you would expect.

share|improve this question

2 Answers

up vote 7 down vote accepted

getpass.getuser() is your friend.

share|improve this answer
+1 that's a nifty module – aaronasterling Sep 16 '10 at 7:49

Here is what I use:

import os
username = getattr(os, "getlogin", None)
if not username:
    for var in ['USER', 'USERNAME','LOGNAME']:
        if  var in os.environ:
            username = os.environ[var]
print("username: %s" % (username))
share|improve this answer
1  
You're basically reinventing the getpass wheel. – Amber Sep 16 '10 at 7:58

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.