1
0
Fork 0
forked from fz0x1/go-org-py
Find a file
2025-06-23 17:58:07 +02:00
go_org_py go-org-py 2025-06-23 17:25:28 +02:00
.gitignore go-org-py 2025-06-23 17:25:28 +02:00
convert.go go-org-py 2025-06-23 17:25:28 +02:00
go.mod go-org-py 2025-06-23 17:25:28 +02:00
go.sum go-org-py 2025-06-23 17:25:28 +02:00
Makefile go-org-py 2025-06-23 17:25:28 +02:00
MANIFEST.in fix 2025-06-23 17:58:07 +02:00
pyproject.toml fix 2025-06-23 17:58:07 +02:00
README.md go-org-py 2025-06-23 17:25:28 +02:00
setup.py fix 2025-06-23 17:46:16 +02:00

go-org-py

go-org-py provides Python bindings for go-org, a fast and accurate Org-mode parser and renderer written in Go. The bindings are generated using gopy, enabling direct access to go-org functionality from Python.

install

go install golang.org/x/tools/cmd/goimports@latest
go install github.com/go-python/gopy@master
pip install git+https://git.fz0x1.wtf/fz0x1/go-org-py.git

using

from go_org_py import convert

html = convert.OrgToHTML("* test")
# or
html = convert.Render("* test", <path file>, "html")