News

Everything in Python is an object, or so the saying goes. If you want to create your own custom objects, with their own properties and methods, you use Python’s class object to make that happen.
I'm going to show you one of the coolest features that Python has, and I guarantee that after you watch this video, you're going to look at Python code completely differently. So let's get into it and ...
When we define a class PluginBase with metaclass=PluginMeta, any subclass of PluginBase will be automatically registered in the plugins list. Final thoughts on metaclasses in Python ...