https://github.com/imjoseangel/pythonsolid
SOLID Principles explained in Python with examples
https://github.com/imjoseangel/pythonsolid
Last synced: 3 months ago
JSON representation
SOLID Principles explained in Python with examples
- Host: GitHub
- URL: https://github.com/imjoseangel/pythonsolid
- Owner: imjoseangel
- License: mit
- Created: 2020-10-02T12:46:29.000Z (about 5 years ago)
- Default Branch: devel
- Last Pushed: 2020-10-06T10:44:53.000Z (about 5 years ago)
- Last Synced: 2025-07-12T01:02:07.010Z (3 months ago)
- Size: 84 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python SOLID Principles
## [SOLID Principles](https://en.wikipedia.org/wiki/SOLID) explained in Python with examples
* [Single Responsibility Principle](https://github.com/imjoseangel/pythonsolid/blob/devel/01_singleresponsibility.md)
* [Open/Closed Principle](https://github.com/imjoseangel/pythonsolid/blob/devel/02_openclosed.md)
* [Liskov Substitution Principle](https://github.com/imjoseangel/pythonsolid/blob/devel/03_liskovsubstitution.md)
* [Interface Segregation Principle](https://github.com/imjoseangel/pythonsolid/blob/devel/04_interfacesegregation.md)
* [Dependency Inversion Principle](https://github.com/imjoseangel/pythonsolid/blob/devel/05_dependencyinversion.md)