python-architecture
Installation
SKILL.md
Python Architecture Skill
Design Patterns for Python
Creational Patterns
Factory Pattern
from abc import ABC, abstractmethod
class Animal(ABC):
@abstractmethod
def make_sound(self):
pass
class Dog(Animal):
def make_sound(self):
return "Woof!"