cdef class Credentials: def __init__(self, str email, str password): self.email = email self.password = password def __str__(self): return f'{self.email}: {self.password}'