E-mail ()
Returns the email address of the user. If you use OpenID, you should not rely on this email address to be correct. Applications should use nickname for displayable names.
Нет встроенного метода для этого. Но вы можете сделать что-то вроде этого
from google.appengine.api import users
user =user=users.get_current_user()
email = user.email()
username = str(email).split('@')[0]