Python Tutorial

What Is The Difference Between Classmethod And Staticmethod In Python

In Python, both classmethod and staticmethod are used to define methods that belong to a class rather than an instance of the class. However, there are some differences between the two. In the previous article, I told you how to create class method in python class with examples. In this article, I will tell you […]

What Is The Difference Between Classmethod And Staticmethod In Python Read More »

How To Control Your Mobile Camera To Take Photos And Automatically Send Them To Your Mailbox In Python

In this article, I will tell you how to control your mobile phone’s camera to take photos, and then send the photos to your mailbox by email in python. To implement this, you should use 3 python libraries, they are opencv, email, and smtplib. You can call the camera to take pictures and save the

How To Control Your Mobile Camera To Take Photos And Automatically Send Them To Your Mailbox In Python Read More »