Suppose I had this class
class employee(object)
    def __init__(self,name):
        return self.name
    def something(self):
        pass
    ...
Leading to
if __name__== "__main__":
    name = input("what is your name ")
    user1 = employee(name)
    user1.something()
    ...
I want the user1 instance to be the name inputted by the user so that I can have unique instances. How do I go about adding instances based on user input in the main section?
so if I run the program and inputted "tim", the outcome I would want is:
tim.name = "tim"
....
UPDATE
Seems like the above is unclear, let me try to explain using my actual code:
So I have this Spotify API:
class Spotify(object):
def __init__(self,user):
    self.client_id = ''
    self.client_secret = ''
def client_credentials(self):
     pass
def get_header_token(self):
     pass
...
In the end,
if __name__== "__main__":
        
        user = input("Enter username ")
        user = Spotify(user)
        user.request_author()
        ...
I am trying to get the user variable to the input the user provides, such as if the user inputted "tim123", the user variable would also be tim123.
So I could perform:
tim123.name
Think my mind is going completely blank and there should be an easy solution for this. I am sure this is very unpractical but I don't know how I would do this in case I ever needed to.
 
     
    