From 292b0bdad1aa79483a7498e72028bbff8134cebb Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 12 Jan 2015 20:28:17 -0800 Subject: Moved python, rb, lua wrappers to wrappers subdirectory. --- wrappers/wrapper3.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 wrappers/wrapper3.py (limited to 'wrappers/wrapper3.py') diff --git a/wrappers/wrapper3.py b/wrappers/wrapper3.py new file mode 100755 index 0000000..7a777fa --- /dev/null +++ b/wrappers/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())) -- cgit v1.2.3