summaryrefslogtreecommitdiff
path: root/wrapper3.py
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-12-29 21:45:53 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-12-29 21:45:53 -0800
commit18a1522edd5a81cee3d78978b81a8b3c93891a61 (patch)
tree6d44209e44adf375ae2073e0647fbe3b6468cfed /wrapper3.py
parentd1922eb6f17578774866a13fd5428cdd3bc2280d (diff)
Added wrapper3.py (python3 sample wrapper).
Diffstat (limited to 'wrapper3.py')
-rwxr-xr-xwrapper3.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/wrapper3.py b/wrapper3.py
new file mode 100755
index 0000000..7a777fa
--- /dev/null
+++ b/wrapper3.py
@@ -0,0 +1,25 @@
+#!/usr/bin/env python3
+
+# Example for using the shared library from python
+
+from ctypes import CDLL, c_char_p, c_long
+import sys
+import platform
+
+sysname = platform.system()
+
+if sysname == 'Darwin':
+ cmark = CDLL("build/src/libcmark.dylib")
+else:
+ cmark = CDLL("build/src/libcmark.so")
+
+markdown = cmark.cmark_markdown_to_html
+markdown.restype = c_char_p
+markdown.argtypes = [c_char_p, c_long]
+
+def md2html(text):
+ textbytes = text.encode('utf-8')
+ textlen = len(textbytes)
+ return markdown(textbytes, textlen).decode('utf-8')
+
+sys.stdout.write(md2html(sys.stdin.read()))