-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
21 lines (20 loc) · 846 Bytes
/
__init__.py
File metadata and controls
21 lines (20 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
import socket
from ListingImplementation.JobListing import JobListing
if __name__ == "__main__":
JobList = JobListing(website=['LinkedIn', 'Indeed'])
JobList.SendRequests({'Indeed': [{
'SearchQuery': 'Frontend Developer',
'JobLocation': 'India',
'NumberOfPages': 10
}],
'LinkedIn': [{
'SearchQuery': 'software engineer',
'JobLocation': 'India',
'NumberOfPages': 10
}]
})
# JobList.PrintRecentHistory()
curr = JobList.Results()
print(curr)
JobList.StoreCurrResults()