Novem exposes a rich set of controls for the users profile, it would be good if these were available both in python and cli.
Ideally you would create a Profile object that is represented by a token, that way you can operate on and manage multiple profiles.
Simple code example
from novem import Profile
# no token, grab default profile from config
me = Profile()
me.public = false # make my profile private
me.name = "My New Name"
me.bio = "Me is a demo user"
# use other profile from config
other = Profile(profile="my-other-user")
other.name = "Other User"
# use token directly
new = Profile(token="nbt-XXXXa251")
new.name = "New User Name"
new.public = true