[PR #725] [MERGED] added PyPattyrn to design patterns section. #5065

Closed
opened 2026-04-17 06:45:43 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/vinta/awesome-python/pull/725
Author: @tylerlaberge
Created: 9/16/2016
Status: Merged
Merged: 11/18/2016
Merged by: @vinta

Base: masterHead: master


📝 Commits (5)

📊 Changes

1 file changed (+1 additions, -0 deletions)

View changed files

📝 README.md (+1 -0)

📄 Description

What is this Python project?

PyPattyrn is a python package aiming to make it easier and faster to implement design patterns into your own projects. Containing over 15 of the most common design patterns, you no longer have to write the same boilerplate code between all your projects when you wish to use a design pattern. This package captures that boilerplate code and makes it easy to use.

Example:

from pypattyrn.creational.singleton import Singleton

class DummyClass(object, metaclass=Singleton):
    ... 

DummyClass is now a Singleton.

What's the difference between this Python project and similar ones?

Every other design pattern repo I've found simply provides examples for how to implement design patterns in python. PyPattyrn is something you would actually import into your project to speed up development process because the boilerplate code necessary for the design pattern is already written and provided for you by the package. I have not found another package that does the same thing.

Anyone who agrees with this pull request could vote for it by adding a 👍 to it, and usually, the maintainer will merge it when votes reach 20.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/vinta/awesome-python/pull/725 **Author:** [@tylerlaberge](https://github.com/tylerlaberge) **Created:** 9/16/2016 **Status:** ✅ Merged **Merged:** 11/18/2016 **Merged by:** [@vinta](https://github.com/vinta) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (5) - [`3a31465`](https://github.com/vinta/awesome-python/commit/3a31465d9a08442ac5cb589f63d233f825070b7f) added PyPattyrn to design patterns section. - [`8ee45cf`](https://github.com/vinta/awesome-python/commit/8ee45cf4730ca8681cc9b178635b5c0d1338a32f) updated pypattyrn description - [`e9ddb2d`](https://github.com/vinta/awesome-python/commit/e9ddb2d6423c5b84f56e3fa4eb30b301eb9e0a0f) Merge branch 'master' of https://github.com/vinta/awesome-python - [`62fadd1`](https://github.com/vinta/awesome-python/commit/62fadd1c0a23f0241e02a69a67709cdcd857ed69) Added PyPattyrn to design patterns sections. - [`bd895b9`](https://github.com/vinta/awesome-python/commit/bd895b971fc1028bb44be1f0c4aa8ea7ae98c0a5) Added PyPattyrn to design patterns sections. ### 📊 Changes **1 file changed** (+1 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -0) </details> ### 📄 Description ## What is this Python project? PyPattyrn is a python package aiming to make it easier and faster to implement design patterns into your own projects. Containing over 15 of the most common design patterns, you no longer have to write the same boilerplate code between all your projects when you wish to use a design pattern. This package captures that boilerplate code and makes it easy to use. Example: ``` python from pypattyrn.creational.singleton import Singleton class DummyClass(object, metaclass=Singleton): ... ``` DummyClass is now a Singleton. ## What's the difference between this Python project and similar ones? Every other design pattern repo I've found simply provides examples for how to implement design patterns in python. PyPattyrn is something you would actually import into your project to speed up development process because the boilerplate code necessary for the design pattern is already written and provided for you by the package. I have not found another package that does the same thing. ## Anyone who agrees with this pull request could vote for it by adding a :+1: to it, and usually, the maintainer will merge it when votes reach **20**. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-17 06:45:43 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-python#5065