WhatApp automation - simple python application
පෙම්වතියට පෙම්වතාට රෑ 12 ට සුභ පතමුද? Python කෝඩ් ලයින් 2න් WhatsApp පණිවිඩය යවමු YouTube වීඩියෝව නැරඹීමට පින්තූරය ක්ලික් කරන්න මෙම python කේතය පිටපත් කරගෙන python application එකක් සාදා ගන්න import pywhatkit from datetime import datetime def clk (): con= True while con: try : H= int ( input ( "Enter the hour in 24 hour clock format:" )) M= int ( input ( "Enter the minute in 24 hour clock format:" )) except : print ( "\nInvalid time. Enter digits. Please re-enter" ) else : now=datetime.now() h= int (now.strftime( "%H" )) m= int (now.strftime( "%M" )) if H>=h and M>m+1 : ...