From a65d39871a97fbde34b2ec701671af4076aa4fbf Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Fri, 30 Oct 2009 10:22:45 -0700 Subject: [PATCH] update readme with new api --- README.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e61044e..477249b 100644 --- a/README.md +++ b/README.md @@ -17,10 +17,18 @@ Documentation For now check out the [ctemplate][3] or [Mustache][4] docs. -Tests ------ +Use It +------ -Want to run the tests? [nose][n] works great! + >>> import pystache + >>> pystache.render('Hi {{person}}!', {'person': 'Mom'}) + 'Hi Mom!' + + +Test It +------- + +[nose][n] works great! easy_install nose cd pystache @@ -31,7 +39,7 @@ Author ------ context = { 'author': 'Chris Wanstrath', 'email': 'chris@ozmm.org' } - Pystache.render("{{author}} :: {{email}}", context) + pystache.render("{{author}} :: {{email}}", context) [1]: http://code.google.com/p/google-ctemplate/