+ 2
What is proxy object in python?
2 Answers
+ 1
Tushar Kumar š®š³
Proxy is a structural design pattern that lets you provide a substitute or placeholder for another object. A proxy controls access to the original object, allowing you to perform something either before or after the request gets through to the original object.
https://refactoring.guru/design-patterns/proxy/JUMP_LINK__&&__python__&&__JUMP_LINK/example
- 1
phjj