Files
2022-01-14 07:59:03 -08:00

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()