mirror of
https://github.com/hayitsdavid/linkedin-job-report-creator.git
synced 2022-02-19 19:59:36 +03:00
13 lines
204 B
Python
13 lines
204 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()
|