Metadata-Version: 2.1
Name: Simplate
Version: 0.0.2
Summary: Simple object-based string templating in python
Home-page: https://github.com/krkimery/simplate
Author: Kyle Kimery
Author-email: kylekimery@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# simplate
Python Simple Templating

```
import Simplate
emailString = "Dear {name}, thank you for your {item}, unfortunately its sold, sincerely {author}."
emailTemplate = Simplate.Simplate(emailString, "EmailToCustomer")
emailToBob = emailTemplate.implement()
emailToBob.author = "Kyle Kimery"
emailToBob.name = "Bob"
emailToBob.item = "Weaboo Merchandise"
print emailToBob
```
```
Dear Bob, thank you for your inquiry regarding Weaboo Merchandise, I regret to inform you that it's gone, sincerely Kyle Kimery.
```

