From 7be7c75029e4e496447fc7f55e434f0293598a02 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Adrien=20B=C3=A9raud?= Date: Fri, 7 Sep 2012 18:04:12 +0300 Subject: [PATCH] Update README.md --- README.md | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 51216f5..580df98 100644 --- a/README.md +++ b/README.md @@ -6,14 +6,10 @@ A python implementation of Base91 as described on http://base91.sourceforge.net/ Usage ----- -> import base91 -> -> base91.encode('test') + import base91 -result: fPNKd + base91.encode('test') #result: 'fPNKd' + base91.encode(b'\xfe\x03\x00W\xa9\xbc') #result: 'VLv(GdNE' -> -> base91.decode('8D9Kc)=/2$WzeFui#G9Km+<{VT2u9MZil}[A') - -result: May a moody baby doom a yam?\n + base91.decode('8D9Kc)=/2$WzeFui#G9Km+<{VT2u9MZil}[A') # result: 'May a moody baby doom a yam?\n' -- 2.30.2