-
-
Notifications
You must be signed in to change notification settings - Fork 2
incendium.user.get_user_full_name
César Román edited this page Apr 30, 2024
·
6 revisions
Get the User's full name.
Args:
- user_source (
str
): The name of the User Source. If not provided, the default User Source will be consulted. Optional. - failover (
str
): The name of the Fallback profile. Optional.
Returns:
-
str
: User's full name.
None.
from __future__ import print_function
from incendium import user as _user
# Get current user's full name
print(_user.get_user_full_name("User Source", "Failover Source"))