This repository has been archived on 2024-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
python-aternos/examples/info_example.py

14 lines
248 B
Python

from getpass import getpass
from selenium.webdriver import Firefox
from python_aternos import Client
user = input('Username: ')
pswd = getpass('Password: ')
driver = Firefox()
atclient = Client(driver)
atclient.login(user, pswd)
driver.quit()