initial code

This commit is contained in:
Nico Melone
2021-06-25 20:38:34 -04:00
parent 7655d39647
commit 585108b3cf

11
hello-fresh.py Normal file
View File

@@ -0,0 +1,11 @@
from string import ascii_lowercase
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time
url_base = "https://www.hellofresh.com/pages/sitemap/recipes-"
driver = webdriver.Chrome()
for x in ['a']: #ascii_lowercase:
print("Going to: {}{}".format(url_base, x))
driver.get(url_base + x)
time.sleep(60)