An open API service indexing awesome lists of open source software.

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

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)