Skip to content

Instantly share code, notes, and snippets.

View marcus-deans's full-sized avatar

Marcus Deans marcus-deans

View GitHub Profile
@marcus-deans
marcus-deans / GymScheduler.py
Created August 26, 2021 05:12 — forked from jimmyjxiao/GymScheduler.py
This script automatically reserves Wilson weightlifting slots.
# This script automatically reserves Wilson weightlifting slots.
# usage: python GymScheduler.py --day=monday --startTime=9:20AM
# use cron (unix) or TaskScheduler (windows) to get this to run automatically 48 hours before
# you need selenium webdriver for chrome and selenium python bindings installed.
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
import sys, getopt