Here are the scripts I use to automate the boring stuff in everyday life.
Allows users to login into Bilkent University's SRS system easily.
To use it fill the user info section in the code and uncomment it.
- This project is written using Python 3.6.5 and Selenium, poplib and email libraries.
- The code is written for Firefox, using it requires geckodriver to be in your OS' path.
- If you want to use the code with another browser i.e. Chrome you need to install the corresponding WebDriver (for Chrome) and change the initialization for browser variable accordingly.
browser = webdriver.Firefox() # for Firefox browser = webdriver.Chrome() # for Chrome
Allows users to login into Bilkent University's BILNET system easily.
To use it fill the user info section in the code and uncomment it.
- This project is written using Python 3.6.5 and Selenium, poplib and email libraries.
- The code is written for Firefox, using it requires geckodriver to be in your OS' path.
- If you want to use the code with another browser i.e. Chrome you need to install the corresponding WebDriver (for Chrome) and change the initialization for browser variable accordingly.
browser = webdriver.Firefox() # for Firefox browser = webdriver.Chrome() # for Chrome
Allows users to login into Bilkent University Webmail easily.
To use it fill the user info section in the code and uncomment it.
- This project is written using Python 3.6.5 and Selenium, poplib and email libraries.
- The code is written for Firefox, using it requires geckodriver to be in your OS' path.
- If you want to use the code with another browser i.e. Chrome you need to install the corresponding WebDriver (for Chrome) and change the initialization for browser variable accordingly.
browser = webdriver.Firefox() # for Firefox browser = webdriver.Chrome() # for Chrome