-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathadapter.py
44 lines (35 loc) · 829 Bytes
/
adapter.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
"""
Convert the interface of a class into another interface clients expect.
Adapter lets classes work together that couldn't otherwise because of
incompatible interfaces.
"""
from abc import ABC, abstractmethod
# ----------------
# Target Interface
# ----------------
class Target(ABC):
"""
Interface for Client
"""
def __init__(self):
self._adaptee = Adaptee()
@abstractmethod
def request(self):
pass
# ----------------
# Adapter Class
# ----------------
class Adapter(Target):
def request(self):
self._adaptee.adaptee_request()
# ----------------
# Adaptee Class
# --------------
class Adaptee:
def adaptee_request(self):
print("Adaptee function called.")
def main():
adapter = Adapter()
adapter.request()
if __name__ == "__main__":
main()