test_login.py 206 B

12345678910
  1. from Client import Client
  2. user = input("User: ")
  3. passw = input("Pass: ")
  4. method = input("Method: ")
  5. cli = Client(method, user, passw, show_window=False)
  6. print(cli.c)
  7. # cli.create_article("Test","Whoops")