Q:

automate the boring stuff with python

Because TigerYT's link does not work anymore, a new link is available:

https://web.bii.a-star.edu.sg/~liangzhu/2017/11/02/linuxcommandline/automatetheboringstuffwithpython_new.pdf

note that you will need to wait a few seconds before you can access it
5
### Answer to: "automate the boring stuff with python pdf" ###

###
#  Go to the following link for the PDF:
#  https://1.droppdf.com/files/5iHzx/automate-the-boring-stuff-with-python-2015-.pdf
###
7
#you can use automation in python using following tools
#Web Automation use selenium driver
#GUI Automation use pyautogui tool

#Selenium Automation Example
#Download chrome driver for Selenium 
# https://chromedriver.chromium.org/downloads

#############Lanuch WebDriver Function - Begin #############
#Make sure the downloaded driver is in the same path where your running code
#else you will get an error.

from selenium import webdriver
# store the browser driver
chrome_browser = launch_chromebrowser('chromedriver')

def launch_chromebrowser(browsername):
    # load the browser driver
    return webdriver.Chrome(browsername)
#############Lanuch WebDriver Function - End #############
2

New to Communities?

Join the community