Skip to content

Commit

Permalink
Updating requirements and cleaning up some imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCredible committed Jul 15, 2020
1 parent 51f865b commit 450a9d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 deletions.
16 changes: 3 additions & 13 deletions easyapplybot.py
Original file line number Diff line number Diff line change
@@ -1,36 +1,26 @@
import time, random, os, csv, datetime, platform
from selenium import webdriver

from selenium.webdriver.chrome.options import Options
from selenium.common.exceptions import TimeoutException
from selenium.webdriver.common.keys import Keys
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.relative_locator import RelativeBy
from selenium.webdriver.support.relative_locator import with_tag_name

from bs4 import BeautifulSoup
import pandas as pd
import pyautogui
from tkinter import filedialog, Tk
import tkinter.messagebox as tm
from urllib.request import urlopen

import loginGUI
from selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManager
import json
from datetime import datetime
import logging
import re
from windowfinder import WindowFinder

import win32com.client as comctl
wsh =comctl.Dispatch("WScript.Shell")





log = logging.getLogger(__name__)
driver = webdriver.Chrome(ChromeDriverManager().install())

Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ six==1.15.0
soupsieve==2.0.1
urllib3==1.25.9
webdriver-manager==3.1.0
pywin32~=228

0 comments on commit 450a9d5

Please sign in to comment.