mirror of
https://github.com/rjNemo/design-patterns
synced 2026-06-06 02:26:40 +00:00
* doc: add proxy README documentation * doc: edit general README files * add proxy code example Co-authored-by: Ruidy <r.nemausat@empfohlen.de>
20 lines
774 B
Markdown
20 lines
774 B
Markdown
# Design Patterns in Python
|
|
|
|
- [Link](https://refactoring.guru/design-patterns/catalog)
|
|
|
|
## Table of Content
|
|
|
|
- [Creational Patterns](creational/README.md)
|
|
- [Factory Method](creational/factory-method/README.md)
|
|
- [Abstract Factory](creational/abstract-factory/README.md)
|
|
- [Builder](creational/builder/README.md)
|
|
- [Prototype](creational/prototype/README.md)
|
|
- [Singleton](creational/singleton/README.md)
|
|
- [Structural Patterns](structural/README.md)
|
|
- [Adapter](structural/adapter/README.md)
|
|
- [Bridge](structural/bridge/README.md)
|
|
- [Composite](structural/composite/README.md)
|
|
- [Decorator](structural/decorator/README.md)
|
|
- [Facade](structural/facade/README.md)
|
|
- [Flyweight](structural/flyweight/README.md)
|
|
- [Proxy](structural/proxy/README.md)
|