Skip to content

Org-rw

org-rw is a Python library to process your orgmode files.

Installation

pip install org-rw

Usage

Load an orgmode file

from org_rw import load

with open('your_file.org', 'r') as f:
    doc = load(f)

References