Posts

PROJECT 3

  WHATSAPP MESSAGES BOT  import pywhatkit pywhatkit.sendwhatmsg("+91","MOBILE NO.","Hello", 16,40) SPEEDTEST BY PYTHON #pip i speedtest-cli from speedtest import Speedtest """ Ping (ms): ping of the test connection, in miliseconds d (Mb/s): d speed recorded, in megabits per second Upload (Mb/s): upload speed recorded, in megabits per second """ print("Checking...") st = Speedtest() #For Checking Upload and d dn = st.d() up = st.upload() print("Your d Speed====>",dn,"Kb/s") print("Your Upload Speed=======>",up,"Kb/s") #Now Convert Data into Megabits -- print("Your d Speed in Megabits====>",round(dn/10**6,2),"Mb/s") print("Your Upload Speed in Megabits=======>",round(up/10**6,2),"Mb/s") #Speed ====> 7Mb/s == 1MB/s #Now Convert  Data into MegaBytes--- print("Your d Speed in MegaBytes====>",(dn/10**6)/7,"...

PROJECT 2

  WHATSAPP MESSAGES BOT  import pywhatkit pywhatkit.sendwhatmsg("+91","MOBILE NO.","Hello", 16,40) SPEEDTEST BY PYTHON #pip i speedtest-cli from speedtest import Speedtest """ Ping (ms): ping of the test connection, in miliseconds d (Mb/s): d speed recorded, in megabits per second Upload (Mb/s): upload speed recorded, in megabits per second """ print("Checking...") st = Speedtest() #For Checking Upload and d dn = st.d() up = st.upload() print("Your d Speed====>",dn,"Kb/s") print("Your Upload Speed=======>",up,"Kb/s") #Now Convert Data into Megabits -- print("Your d Speed in Megabits====>",round(dn/10**6,2),"Mb/s") print("Your Upload Speed in Megabits=======>",round(up/10**6,2),"Mb/s") #Speed ====> 7Mb/s == 1MB/s #Now Convert  Data into MegaBytes--- print("Your d Speed in MegaBytes====>",(dn/10**6)/7,"...

PYTHON PROJECTS

WHATSAPP MESSAGES BOT  import pywhatkit pywhatkit.sendwhatmsg("+91","MOBILE NO.","Hello", 16,40) SPEEDTEST BY PYTHON #pip install speedtest-cli from speedtest import Speedtest """ Ping (ms): ping of the test connection, in miliseconds Downloa (Mb/s): downloa speed recorded, in megabits per second Upload (Mb/s): upload speed recorded, in megabits per second """ print("Checking...") st = Speedtest() #For Checking Upload and dn = st.downloa() up = st.upload() print("Your Downloa Speed====>",dn,"Kb/s") print("Your Upload Speed=======>",up,"Kb/s") #Now Convert Data into Megabits -- print("Your Downloa Speed in Megabits====>",round(dn/10**6,2),"Mb/s") print("Your Upload Speed in Megabits=======>",round(up/10**6,2),"Mb/s") #Speed ====> 7Mb/s == 1MB/s #Now Convert  Data into MegaBytes--- print("Your Speed in MegaBytes====...

PROJECT

  WHATSAPP MESSAGES BOT  import pywhatkit pywhatkit.sendwhatmsg("+91","MOBILE NO.","Hello", 16,40) SPEEDTEST BY PYTHON #pip i speedtest-cli from speedtest import Speedtest """ Ping (ms): ping of the test connection, in miliseconds d (Mb/s): d speed recorded, in megabits per second Upload (Mb/s): upload speed recorded, in megabits per second """ print("Checking...") st = Speedtest() #For Checking Upload and d dn = st.d() up = st.upload() print("Your d Speed====>",dn,"Kb/s") print("Your Upload Speed=======>",up,"Kb/s") #Now Convert Data into Megabits -- print("Your d Speed in Megabits====>",round(dn/10**6,2),"Mb/s") print("Your Upload Speed in Megabits=======>",round(up/10**6,2),"Mb/s") #Speed ====> 7Mb/s == 1MB/s #Now Convert  Data into MegaBytes--- print("Your d Speed in MegaBytes====>",(dn/10**6)/7,"MB/s...

PROJRCT 1

  WHATSAPP MESSAGES BOT  import pywhatkit pywhatkit.sendwhatmsg("+91","MOBILE NO.","Hello", 16,40) SPEEDTEST BY PYTHON #pip i speedtest-cli from speedtest import Speedtest """ Ping (ms): ping of the test connection, in miliseconds d (Mb/s): d speed recorded, in megabits per second Upload (Mb/s): upload speed recorded, in megabits per second """ print("Checking...") st = Speedtest() #For Checking Upload and d dn = st.d() up = st.upload() print("Your d Speed====>",dn,"Kb/s") print("Your Upload Speed=======>",up,"Kb/s") #Now Convert Data into Megabits -- print("Your d Speed in Megabits====>",round(dn/10**6,2),"Mb/s") print("Your Upload Speed in Megabits=======>",round(up/10**6,2),"Mb/s") #Speed ====> 7Mb/s == 1MB/s #Now Convert  Data into MegaBytes--- print("Your d Speed in MegaBytes====>",(dn/10**6)/7,"MB/s...

BOT FOR WHATSAPP MESSAGES

 import pywhatkit pywhatkit.sendwhatmsg("+91","MOBILE NO.","Hello", 16,40)

SPEEDTEST PYTHON PROJECT

 #pip install speedtest-cli from speedtest import Speedtest """ Ping (ms): ping of the test connection, in miliseconds Download (Mb/s): download speed recorded, in megabits per second Upload (Mb/s): upload speed recorded, in megabits per second """ print("Checking...") st = Speedtest() #For Checking Upload and Download dn = st.download() up = st.upload() print("Your Download Speed====>",dn,"Kb/s") print("Your Upload Speed=======>",up,"Kb/s") #Now Convert Data into Megabits -- print("Your Download Speed in Megabits====>",round(dn/10**6,2),"Mb/s") print("Your Upload Speed in Megabits=======>",round(up/10**6,2),"Mb/s") #Speed ====> 7Mb/s == 1MB/s #Now Convert  Data into MegaBytes--- print("Your Download Speed in MegaBytes====>",(dn/10**6)/7,"MB/s") print("Your Upload Speed in MegaBytes=======>",(up/10**6)/7,"MB/s...