From d7284a7010de7626487061cbe1ac06916a680e9b Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Tue, 11 Nov 2014 12:52:51 -0800 Subject: Added example wrapper.py. This shows how to use the shared library from python. --- wrapper.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 wrapper.py (limited to 'wrapper.py') 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()) -- cgit v1.2.3