python design patterns samples
Design patterns are conceptual tools for solving complex software problems. These patterns are simple and elegant solutions that have evolved over time and may have become generally accepted as the best way to address certain design challenges.
| Pattern Name | Description |
|---|---|
| Singleton | a single class which is responsible to create an object while making sure that only single object gets created. |