summaryrefslogtreecommitdiff
path: root/wrapper.py
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2014-11-11 12:52:51 -0800
committerJohn MacFarlane <fiddlosopher@gmail.com>2014-11-11 12:52:51 -0800
commitd7284a7010de7626487061cbe1ac06916a680e9b (patch)
tree83e99291c60f126750cba9a4463df8224a7e0182 /wrapper.py
parent3739c54c9a3ce1f79452548a49f82878868fa6d0 (diff)
Added example wrapper.py.
This shows how to use the shared library from python.
Diffstat (limited to 'wrapper.py')
-rw-r--r--wrapper.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/wrapper.py b/wrapper.py
new file mode 100644
index 0000000..f20aac6
--- /dev/null
+++ b/wrapper.py
@@ -0,0 +1,23 @@
+#!/usr/bin/env python
+
+# Example for using the shared library from python
+
+from ctypes import CDLL, c_char_p
+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]
+
+def md2html(text):
+ return markdown(text, len(text))
+
+print md2html(sys.stdin.read())