Update README.md

This commit is contained in:
tylerlaberge
2016-11-17 23:47:28 -05:00
committed by GitHub
parent 9e463f2c36
commit e9816ed4af

View File

@@ -1,6 +1,4 @@
# PyPattyrn
### Design Pattern Templates for Python.
___
```python
@@ -12,7 +10,7 @@ class DummyClass(object, metaclass=Singleton): # DummyClass is now a Singleton
PyPattyrn is a python package aiming to make it easier and faster to implement design patterns into your own projects.
Design patterns by nature cannot be directly translated into code as they are just a description of how to solve a particular problem. However, many of the common design patterns have some boilerplate code that is common throughout all implementations of the pattern. This package captures that common code and makes it easy to use so that you dont have to write it yourself in all your projects.
Design patterns by nature cannot be directly translated into code as they are just a description of how to solve a particular problem. However, many of the common design patterns have boilerplate code that is common throughout all implementations of the pattern. This package captures that common code and makes it easy to use so that you dont have to write it yourself in all your projects.
___
### Contents