--- liblouis-2.4.1.orig/python/louis/__init__.py.in
+++ liblouis-2.4.1/python/louis/__init__.py.in
@@ -29,6 +29,23 @@
 @author: James Teh <jamie@jantrid.net>
 @author: Eitan Isaacson <eitan@ascender.com>
 @author: Michael Whapples <mwhapples@aim.com>
+
+>>> import louis
+
+Show a US grade2 translation of a unicode string with no typeform 
+information:
+>>> louis.translateString(['en-us-g2.ctb'], u'Hello world', None, 0)
+u',hello _w'
+
+Now do a translation using bold for the string:
+>>> louis.translateString(['en-us-g2.ctb'], u'Hello world', 
+[louis.bold]*11, 0)
+u',hello __w'
+
+Now do a translation using cursor position:
+>>> louis.translate(['en-us-g2.ctb'], u'Hello world', None, 5, 0)
+(u',hello _w', [0, 0, 1, 2, 3, 4, 5, 6, 6], [1, 2, 3, 4, 5, 6, 7, 7, 7, 
+7, 7], 6)
 """
 
 from ctypes import *
