Member-only story
10 Python Mini Automation Projects
Collection of mini projects that will automate your problems

Make your tasks automated by building the mini automation projects that put your repeated task and work on autopilot. In this article, I will show you 10 Python mini-automation projects with code. So mark this article and let's get started.
The age of automation is going to be the age of “do it yourself”.
— Marshall Mcluhen
👉Email Sender
Email is always the best way of marketing and communicating professionally. Now you can send Emails programmatically with Python. This awesome Mini project uses the Yagmail module that will show you how to send an email on any mail server.
# Send Email with Python
# pip install yagmailfrom yagmail import SMTPdef Email_Sender(subject, body):
mail = SMTP(user='username', password='password')
mail.send("reciever@mail.com", subject = subject, contents = body)
mail.close()
print("Email Sent")def Email_With_Attachment(subject, attachment):
mail = SMTP(user='username', password='password')
mail.send("reciever@mail.com", subject = subject, attachments = attachment)…