Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cmower/orgnode
Read Org-mode files.
https://github.com/cmower/orgnode
Last synced: 23 days ago
JSON representation
Read Org-mode files.
- Host: GitHub
- URL: https://github.com/cmower/orgnode
- Owner: cmower
- Created: 2022-01-11T18:09:26.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-01-12T12:15:10.000Z (almost 3 years ago)
- Last Synced: 2023-03-06T01:23:24.837Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Orgnode
Orgnode is a simple Python package for reading Org-mode files, originally created by [Charles Cave](http://members.optusnet.com.au/~charles57/GTD/orgnode.html).
Load an Org-mode file using
```python
root, nodelist = Orgnode.makelist(filename)
```
where
- `root` is a string containing everything up until the first node
- `nodelist` is a list of `Orgnode` objects, see [Module documentation](http://members.optusnet.com.au/~charles57/GTD/orgnode.html)
- `filename` is the filename for the Org-mode file you want to load# Install
1. `$ git clone [email protected]:cmower/Orgnode.git`
1. `$ cd Orgnode`
1. `$ pip install .`