April 2018
Intermediate to advanced
280 pages
8h 37m
English
We determine if a user exists by finding the user using the find_user() function call and passing the username. This function returns an object that represents the user:
def find_user(conn): username="packtpub" user = conn.identity.find_user(username,ignore_missing=True) print (user)