forked from izahn/GithubDemo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
amazonfresh.py
66 lines (52 loc) · 2.2 KB
/
amazonfresh.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import bs4
from selenium import webdriver
import sys
import time
import os
def getWFSlot(productUrl):
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36',
}
driver = webdriver.Chrome(executable_path='/Users/miaomiaozhang/Downloads/chromedriver 2')
driver.get(productUrl)
html = driver.page_source
soup = bs4.BeautifulSoup(html, "html.parser")
time.sleep(60)
no_open_slots = True
while no_open_slots:
driver.refresh()
print("refreshed")
html = driver.page_source
soup = bs4.BeautifulSoup(html, "html.parser")
time.sleep(4)
try:
slot_opened_text = "Not available"
all_dates = soup.findAll("div", {"class": "ufss-date-select-toggle-text-availability"})
for each_date in all_dates:
if slot_opened_text not in each_date.text:
print('SLOTS OPEN 2!')
os.system('say "Slots for delivery opened!"')
no_open_slots = False
time.sleep(1400)
except AttributeError:
pass
try:
no_slot_pattern = 'No delivery windows available. New windows are released throughout the day.'
if no_slot_pattern == soup.find('h4', class_ ='a-alert-heading').text:
print("NO SLOTS!")
except AttributeError:
print('SLOTS OPEN 3!')
os.system('say "Slots for delivery opened!"')
no_open_slots = False
slot_patterns = ['Next available', '1-hour delivery windows', '2-hour delivery windows']
try:
next_slot_text = str([x.text for x in soup.findAll('h4', class_ ='ufss-slotgroup-heading-text a-text-normal')])
if any(next_slot_text in slot_pattern for slot_pattern in slot_patterns):
print('SLOTS OPEN!')
winsound.Beep(freq, duration)
no_open_slots = False
autoCheckout(driver)
except AttributeError:
pass
getWFSlot('https://www.amazon.com/gp/buy/shipoptionselect/handlers/display.html?hasWorkingJavascript=1')
getWFSlot('https://primenow.amazon.com/checkout/enter-checkout?merchantId=AAWRW3AJ0EKOR&ref=pn_sc_ptc_bwr')