import sports
i=sports.get_match("Cricket","Team1","Team2")
import time
from plyer import notification
notification.notify(
title="IPL Scores Updates",
message=str(i),
app_icon="Path of Image",
timeout=10,
)
time.sleep(10)
i=sports.get_match("Cricket","Team1","Team2")
import time
from plyer import notification
notification.notify(
title="IPL Scores Updates",
message=str(i),
app_icon="Path of Image",
timeout=10,
)
time.sleep(10)
👍1
import sports
Matchinfo=sports.get_sport("CRICKET")
from pynotifier import Notification
Notification(
title="IPL Live score Updates",
description=str(Matchinfo),
duration=60,
).send()
Matchinfo=sports.get_sport("CRICKET")
from pynotifier import Notification
Notification(
title="IPL Live score Updates",
description=str(Matchinfo),
duration=60,
).send()
#YKYG: The First Generation computers[1946-1959] used____ for memory and circuitry
Anonymous Quiz
20%
Transistors
22%
Magnetic Disks
50%
Vaccum tubes
9%
Integrated Circuits
This media is not supported in your browser
VIEW IN TELEGRAM
New video: Chrome Automation Using Selenium ( Upcoming Weekends )❤️
Update: Hello Guys i engaged with lot of personal works not have enough time to upload videos.I will upload Amazon automation video in this week or next week
❤️staysafe and stay positive
❤️staysafe and stay positive
from selenium import webdriver
import time
from selenium.webdriver.common.keys import Keys
web=webdriver.Chrome("D:\chromedriver")
web.get("https://www.amazon.com/ap/signin?openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.com%2F%3Fref_%3Dnav_ya_signin&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.assoc_handle=usflex&openid.mode=checkid_setup&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&")
time.sleep(1)
login=web.find_element_by_xpath("/html/body/div[1]/div[1]/div[2]/div/div[2]/div/div[1]/form/div/div/div/div[1]/input[1]")
login.send_keys("Your phone no/email")
Submit=web.find_element_by_xpath("/html/body/div[1]/div[1]/div[2]/div/div[2]/div/div[1]/form/div/div/div/div[2]/span/span/input")
Submit.click()
import time
from selenium.webdriver.common.keys import Keys
web=webdriver.Chrome("D:\chromedriver")
web.get("https://www.amazon.com/ap/signin?openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.com%2F%3Fref_%3Dnav_ya_signin&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.assoc_handle=usflex&openid.mode=checkid_setup&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&")
time.sleep(1)
login=web.find_element_by_xpath("/html/body/div[1]/div[1]/div[2]/div/div[2]/div/div[1]/form/div/div/div/div[1]/input[1]")
login.send_keys("Your phone no/email")
Submit=web.find_element_by_xpath("/html/body/div[1]/div[1]/div[2]/div/div[2]/div/div[1]/form/div/div/div/div[2]/span/span/input")
Submit.click()
from selenium import webdriver
web=webdriver.Chrome("D:\chromedriver")
Producturl="product link"
web.get(Producturl)
Addtocart=web.find_element_by_xpath("/html/body/div[2]/div[1]/div[7]/div[5]/div[1]/div[4]/div/div/div[1]/div/div/div[1]/div/div[2]/div/form/div/div/div[15]/div[1]/span/span/span/input")
Addtocart.click()
web=webdriver.Chrome("D:\chromedriver")
Producturl="product link"
web.get(Producturl)
Addtocart=web.find_element_by_xpath("/html/body/div[2]/div[1]/div[7]/div[5]/div[1]/div[4]/div/div/div[1]/div/div/div[1]/div/div[2]/div/form/div/div/div[15]/div[1]/span/span/span/input")
Addtocart.click()