forked from wodsuz/EasyApplyJobsBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinkedin.py
More file actions
247 lines (200 loc) · 11.4 KB
/
linkedin.py
File metadata and controls
247 lines (200 loc) · 11.4 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
import time,math,random,os
import utils,constants,config
from selenium import webdriver
from selenium.webdriver.common.by import By
from utils import prRed,prYellow,prGreen
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.chrome.service import Service as ChromeService
class Linkedin:
def __init__(self):
prYellow("🌐 Bot will run in Chrome browser and log in Linkedin for you.")
self.driver = webdriver.Chrome(service=ChromeService(ChromeDriverManager().install()),options=utils.chromeBrowserOptions())
self.driver.get("https://www.linkedin.com/login?trk=guest_homepage-basic_nav-header-signin")
prYellow("🔄 Trying to log in linkedin...")
try:
self.driver.find_element("id","username").send_keys(config.email)
time.sleep(2)
self.driver.find_element("id","password").send_keys(config.password)
time.sleep(2)
self.driver.find_element("xpath",'//button[@type="submit"]').click()
time.sleep(5)
self.mongoConnection("Check")
except:
prRed("❌ Couldn't log in Linkedin by using Chrome. Please check your Linkedin credentials on config files line 7 and 8. If error continue you can define Chrome profile or run the bot on Firefox")
def generateUrls(self):
if not os.path.exists('data'):
os.makedirs('data')
try:
with open('data/urlData.txt', 'w',encoding="utf-8" ) as file:
linkedinJobLinks = utils.LinkedinUrlGenerate().generateUrlLinks()
for url in linkedinJobLinks:
file.write(url+ "\n")
prGreen("✅ Urls are created successfully, now the bot will visit those urls.")
except:
prRed("❌ Couldn't generate url, make sure you have /data folder and modified config.py file for your preferances.")
def linkJobApply(self):
self.generateUrls()
countApplied = 0
countJobs = 0
urlData = utils.getUrlDataFile()
for url in urlData:
self.driver.get(url)
totalJobs = self.driver.find_element(By.XPATH,'//small').text
totalPages = utils.jobsToPages(totalJobs)
urlWords = utils.urlToKeywords(url)
lineToWrite = "\n Category: " + urlWords[0] + ", Location: " +urlWords[1] + ", Applying " +str(totalJobs)+ " jobs."
self.displayWriteResults(lineToWrite)
for page in range(totalPages):
currentPageJobs = constants.jobsPerPage * page
url = url +"&start="+ str(currentPageJobs)
self.driver.get(url)
time.sleep(random.uniform(1, constants.botSpeed))
offersPerPage = self.driver.find_elements(By.XPATH,'//li[@data-occludable-job-id]')
offerIds = []
time.sleep(random.uniform(1, constants.botSpeed))
for offer in offersPerPage:
offerId = offer.get_attribute("data-occludable-job-id")
offerIds.append(int(offerId.split(":")[-1]))
for jobID in offerIds:
offerPage = 'https://www.linkedin.com/jobs/view/' + str(jobID)
self.driver.get(offerPage)
time.sleep(random.uniform(1, constants.botSpeed))
countJobs += 1
jobProperties = self.getJobProperties(countJobs)
if "blacklisted" in jobProperties:
lineToWrite = jobProperties + " | " + "* 🤬 Blacklisted Job, skipped!: " +str(offerPage)
self.displayWriteResults(lineToWrite)
else :
button = self.easyApplyButton()
if button is not False:
button.click()
time.sleep(random.uniform(1, constants.botSpeed))
countApplied += 1
try:
self.chooseResume()
self.driver.find_element(By.CSS_SELECTOR, "button[aria-label='Submit application']").click()
time.sleep(random.uniform(1, constants.botSpeed))
lineToWrite = jobProperties + " | " + "* 🥳 Just Applied to this job: " +str(offerPage)
self.displayWriteResults(lineToWrite)
except:
try:
self.driver.find_element(By.CSS_SELECTOR,"button[aria-label='Continue to next step']").click()
time.sleep(random.uniform(1, constants.botSpeed))
comPercentage = self.driver.find_element(By.XPATH,'html/body/div[3]/div/div/div[2]/div/div/span').text
percenNumber = int(comPercentage[0:comPercentage.index("%")])
result = self.applyProcess(percenNumber,offerPage)
lineToWrite = jobProperties + " | " + result
self.displayWriteResults(lineToWrite)
except Exception as e:
self.chooseResume()
lineToWrite = jobProperties + " | " + "* 🥵 Cannot apply to this Job! " +str(offerPage)
self.displayWriteResults(lineToWrite)
else:
lineToWrite = jobProperties + " | " + "* 🥳 Already applied! Job: " +str(offerPage)
self.displayWriteResults(lineToWrite)
prYellow("Category: " + urlWords[0] + "," +urlWords[1]+ " applied: " + str(countApplied) +
" jobs out of " + str(countJobs) + ".")
utils.donate(self)
def chooseResume(self):
try:
beSureIncludeResumeTxt = self.driver.find_element(By.CLASS_NAME, "jobs-document-upload__title--is-required")
if(beSureIncludeResumeTxt.text == "Be sure to include an updated resume"):
resumes = self.driver.find_elements(By.CSS_SELECTOR,"button[aria-label='Choose Resume']")
if(len(resumes) == 1):
resumes[0].click()
elif(len(resumes)>1):
resumes[config.preferredCv-1].click()
else:
prRed("❌ No resume has been selected please add at least one resume to your Linkedin account.")
except:
pass
def getJobProperties(self, count):
textToWrite = ""
jobTitle = ""
jobCompany = ""
jobLocation = ""
jobWOrkPlace = ""
jobPostedDate = ""
jobApplications = ""
try:
jobTitle = self.driver.find_element(By.XPATH,"//h1[contains(@class, 'job-title')]").get_attribute("innerHTML").strip()
res = [blItem for blItem in config.blackListTitles if(blItem.lower() in jobTitle.lower())]
if (len(res)>0):
jobTitle += "(blacklisted title: "+ ' '.join(res)+ ")"
except Exception as e:
if(config.displayWarnings):
prYellow("⚠️ Warning in getting jobTitle: " +str(e)[0:50])
jobTitle = ""
try:
jobCompany = self.driver.find_element(By.XPATH,"//a[contains(@class, 'ember-view t-black t-normal')]").get_attribute("innerHTML").strip()
res = [blItem for blItem in config.blacklistCompanies if(blItem.lower() in jobTitle.lower())]
if (len(res)>0):
jobCompany += "(blacklisted company: "+ ' '.join(res)+ ")"
except Exception as e:
if(config.displayWarnings):
prYellow("⚠️ Warning in getting jobCompany: " +str(e)[0:50])
jobCompany = ""
try:
jobLocation = self.driver.find_element(By.XPATH,"//span[contains(@class, 'bullet')]").get_attribute("innerHTML").strip()
except Exception as e:
if(config.displayWarnings):
prYellow("⚠️ Warning in getting jobLocation: " +str(e)[0:50])
jobLocation = ""
try:
jobWOrkPlace = self.driver.find_element(By.XPATH,"//span[contains(@class, 'workplace-type')]").get_attribute("innerHTML").strip()
except Exception as e:
if(config.displayWarnings):
prYellow("⚠️ Warning in getting jobWorkPlace: " +str(e)[0:50])
jobWOrkPlace = ""
try:
jobPostedDate = self.driver.find_element(By.XPATH,"//span[contains(@class, 'posted-date')]").get_attribute("innerHTML").strip()
except Exception as e:
if(config.displayWarnings):
prYellow("⚠️ Warning in getting jobPostedDate: " +str(e)[0:50])
jobPostedDate = ""
try:
jobApplications= self.driver.find_element(By.XPATH,"//span[contains(@class, 'applicant-count')]").get_attribute("innerHTML").strip()
except Exception as e:
if(config.displayWarnings):
prYellow("⚠️ Warning in getting jobApplications: " +str(e)[0:50])
jobApplications = ""
textToWrite = str(count)+ " | " +jobTitle+ " | " +jobCompany+ " | " +jobLocation+ " | " +jobWOrkPlace+ " | " +jobPostedDate+ " | " +jobApplications
return textToWrite
def easyApplyButton(self):
try:
time.sleep(random.uniform(1, constants.botSpeed))
button = self.driver.find_element(By.XPATH,
'//button[contains(@class, "jobs-apply-button")]')
EasyApplyButton = button
except:
EasyApplyButton = False
return EasyApplyButton
def applyProcess(self, percentage, offerPage):
applyPages = math.floor(100 / percentage)
result = ""
try:
for pages in range(applyPages-2):
self.driver.find_element(By.CSS_SELECTOR,"button[aria-label='Continue to next step']").click()
time.sleep(random.uniform(1, constants.botSpeed))
self.driver.find_element(By.CSS_SELECTOR,"button[aria-label='Review your application']").click()
time.sleep(random.uniform(1, constants.botSpeed))
if config.followCompanies is False:
self.driver.find_element(By.CSS_SELECTOR,"label[for='follow-company-checkbox']").click()
time.sleep(random.uniform(1, constants.botSpeed))
self.driver.find_element(By.CSS_SELECTOR,"button[aria-label='Submit application']").click()
time.sleep(random.uniform(1, constants.botSpeed))
result = "* 🥳 Just Applied to this job: " +str(offerPage)
except:
# PRO FEATURE! OUTPUT UNANSWERED QUESTIONS, APPLY THEM VIA OPENAI, output them.
result = "* 🥵 " +str(applyPages)+ " Pages, couldn't apply to this job! Extra info needed. Link: " +str(offerPage)
return result
def displayWriteResults(self,lineToWrite: str):
try:
print(lineToWrite)
utils.writeResults(lineToWrite)
except Exception as e:
prRed("❌ Error in DisplayWriteResults: " +str(e))
start = time.time()
Linkedin().linkJobApply()
end = time.time()
prYellow("---Took: " + str(round((time.time() - start)/60)) + " minute(s).")