Posts

Showing posts from January, 2021

WhatApp automation - simple python application

Image
පෙම්වතියට පෙම්වතාට රෑ 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 : ...

How to make email sending bot using python in sinhala

Image
Python වලින් email යවන robot 🤖 කෙනෙක් හදමු පළමු කොටස වීඩියෝව නැරඹීමට පින්තූරය මත ක්ලික් කරන්න import smtplib from email.message import EmailMessage def sendMail (receiver , subject , message): print ( "Your Email is composing. Please wait.." ) server = smtplib.SMTP( "smtp.gmail.com" , 587 ) server.ehlo() #Authentication server.starttls() #Authentication server.ehlo() #Authentication server.login( "botsinhala@gmail.com" , "60t51nh@l@" ) #server.login("botsinhala@gmail.com","password") mail=EmailMessage() mail[ "From" ]= "botsinhala@gmail.com" mail[ "To" ]=receiver mail[ "Subject" ]=subject mail.set_content(message) server.send_message(mail) server.close() print ( "Email sent successfully to " , receiver , " \n " ) sendMail( "gadjetrathnayake@gmail.com" , "testing message 1" , "This...