Adapter Design Pattern in Python
YOUR LINK HERE:
http://youtube.com/watch?v=SUsbtMcTh-A
Adapter Design Pattern Article : / adapter-design-pattern • Design Patterns In Python Book : https://www.amazon.com/dp/B08XLJ8Z2J • Adapter Design Pattern in Python • The adapter design pattern solves these problems: • How can a class be reused that does not have an interface that a client requires? • How can classes that have incompatible interfaces work together? • How can an alternative interface be provided for a class? • In this video, I have 2 classes, they don't share the same interface. • The client requires it's objects to use an already standardised interface. • So we need to create an adapter, that wraps the incompatible object, but implements the standardised interface. • The source code in this video is at • https://sbcode.net/python/adapter/
#############################
