-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathamazon-back-stock.py
144 lines (117 loc) · 5.07 KB
/
amazon-back-stock.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
import json
import requests
import time
import urllib
import config
from bs4 import BeautifulSoup
from selenium.webdriver import Chrome
from selenium.webdriver.chrome.options import Options
TOKEN = ''
URL = "https://api.telegram.org/bot{}/".format(TOKEN)
stop = number = 0
def get_url(url):
response = requests.get(url)
content = response.content.decode("utf8")
return content
def get_json_from_url(url):
content = get_url(url)
js = json.loads(content)
return js
def get_updates(offset=None):
url = URL + "getUpdates"
if offset:
url += "?offset={}".format(offset)
js = get_json_from_url(url)
return js
def get_last_update_id(updates):
update_ids = []
for update in updates["result"]:
update_ids.append(int(update["update_id"]))
return max(update_ids)
def handle_updates(updates):
for update in updates["result"]:
global chat
try:
text = update["message"]["text"]
palavras = text.split()
chat = update["message"]["chat"]["id"]
except KeyError:
text = "Invalid Input"
chat = update["message"]["chat"]["id"]
send_message(text,chat)
pass
if text == "/stop":
global stop
die()
stop = 1
send_message("Bot is Stopped. Type /url to start again.", chat)
elif text == "/start":
send_message("Welcome to Amazon Stock Checker by Arsh.\nEnter the /url command below to start the Bot.", chat)
elif text == "/url":
send_message("Enter the product URL below.", chat)
elif text.startswith('0') or text.startswith('1') or text.startswith('2') or text.startswith('3') or text.startswith('4') or text.startswith('5') or text.startswith('6') or text.startswith('7') or text.startswith('8') or text.startswith('9') :
send_message("Enter how many times you want to check stock.", chat)
number = text
elif text.startswith("/"):
continue
elif text.startswith("https://www.amazon.in/dp") or text.startswith("https://www.amazon.in/gp"):
#print(number)
i=5
while(i != 0):
i = i - 1
#number = number - 1
print(i)
message = text
url= message
chrome_options = Options()
chrome_options.add_argument("--headless")
with Chrome(options=chrome_options) as browser:
browser.get(url)
html = browser.page_source
soup = BeautifulSoup(html, "html.parser")
title = soup.title.string
cart = soup.find('span', { "id" : "submit.add-to-cart-announce"})
buy = soup.find('span', { "id" : "submit.buy-now-announce"})
price = soup.find('span', { "id" : "priceblock_dealprice"})
if str(cart) == "None" or str(buy) == "None":
print("Not in Stock")
else:
print(cart.get_text(),buy.get_text())
if text.startswith("https://www.amazon.in/gp"):
a = telegram_bot_sendtext(title + '\n\nPRODUCT IN STOCK\n\n' + price.get_text() + '\n\n' + url)
print(a)
else:
a = telegram_bot_sendtext(title + '\n\nPRODUCT IN STOCK\n\n' + '\n\n' + url)
print(a)
else:
send_message("Invalid Input", chat)
def telegram_bot_sendtext(bot_message):
global chat
bot_token = str(TOKEN)
bot_chatID = str(chat)
bot_message = urllib.parse.quote_plus(bot_message)
send_text = 'https://api.telegram.org/bot' + bot_token + '/sendMessage?chat_id=' + bot_chatID + '&parse_mode=Markdown' + '&text=' + bot_message
response = requests.get(send_text)
return response.json()
def get_last_chat_id_and_text(updates):
num_updates = len(updates["result"])
last_update = num_updates - 1
text = updates["result"][last_update]["message"]["text"]
chat_id = updates["result"][last_update]["message"]["chat"]["id"]
return (text, chat_id)
def send_message(text, chat_id, reply_markup=None):
text = urllib.parse.quote_plus(text)
url = URL + "sendMessage?text={}&chat_id={}&parse_mode=Markdown".format(text, chat_id)
if reply_markup:
url += "&reply_markup={}".format(reply_markup)
get_url(url)
def main():
last_update_id = None
while True:
updates = get_updates(last_update_id)
if len(updates["result"]) > 0:
last_update_id = get_last_update_id(updates) + 1
handle_updates(updates)
time.sleep(2) //increased more time because of anti-spam system of telegram
if __name__ == '__main__':
main()