-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.py
38 lines (29 loc) · 1.25 KB
/
demo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import json
import pandas as pd
from Bot import Bot
from job_site import Lever
from search_engine import DuckDuckGo
from Browser import Browser
# necessary objects
web_driver = Browser()
job_board = Lever()
search_engine = DuckDuckGo(web_driver)
bot = Bot(search_engine, job_board)
################################################################################
########################### Scrape Jobs ########################################
################################################################################
bot.get_jobs('Remote Data Scientist', pages=1)
bot.save_job_info()
web_driver.quit()
################################################################################
########################### Apply to Jobs #######################################
################################################################################
with open('files/user_info.json') as f:
user_data = json.load(f)
scraped_jobs = pd.read_csv('files/output/main.csv')
not_applied_to_yet = scraped_jobs.query(f'applied == {False}')
for iUrl in not_applied_to_yet['apply'].unique():
bot.apply_to_job(user_info=user_data, url=iUrl)
bot.record_job_as_applied_to(iUrl, scraped_jobs)
scraped_jobs.to_csv('files/output/main.csv', index=False)
web_driver.quit()