mirror of
https://github.com/hayitsdavid/linkedin-job-report-creator.git
synced 2022-02-19 19:59:36 +03:00
13 lines
200 B
Python
13 lines
200 B
Python
from creator import PullJob
|
|
|
|
# For Test name
|
|
url = input('Enter URL')
|
|
file = input('job')
|
|
nouns = 10
|
|
verbs = 10
|
|
|
|
pull = PullJob(url, file, nouns, verbs)
|
|
|
|
if __name__ == '__main__':
|
|
pull.run_all()
|