14 lines
210 B
Python
14 lines
210 B
Python
from scraper import scraper
|
|
import time
|
|
|
|
|
|
def main():
|
|
print("Starting the application...\n\n")
|
|
scraper()
|
|
print("\n\nApplication finished!")
|
|
time.sleep(8)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|