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!"
Installs
4
First Seen
Feb 21, 2026
python-architecture — vircung/opencode-config