orgparse icon indicating copy to clipboard operation
orgparse copied to clipboard

Python module for reading Emacs org-mode files

Results 20 orgparse issues
Sort by recently updated
recently updated
newest added

In an org-file like this, the table would have tabname as a name in the org-element. It would be helpful to have this information as attributes or something in orgparse.extra.Table....

bug

Not that it's slow, but making it even faster wouldn't hurt. Or at least setting up some proper benchmarks. https://github.com/org-roam/test-org-files is a good source of test files `py-spy` output from...

Is orgparse.date public API? I'd like to use it in my code, but I'm not sure if it's intended as public API, and I wouldn't want to depend on it...

https://github.com/karlicoss/orgparse/blob/becddb11f9d113f98ac2b45c9348fb0f3d51b4e2/orgparse/date.py#L319 There is a bug that comes from some errors while changing from `get_start()` method to `start` attribute (made in commit https://github.com/karlicoss/orgparse/commit/e2c964c94ff2ed28215e4d484401e17416410e4a )

see https://www.reddit.com/r/orgmode/comments/d6v0mc/orgparse_is_back_python_library_for_reading/f0wxo14/

enhancement

Hi, I'm using orgparse to get a list of recent clock entries. However I don't see how to access the properties and comments inside the clock entries. Here's an example:...

`2011-04-31` is not a valid date, april only has 30 days. testcase: ``` ** test ``` leads to: ``` Traceback (most recent call last): File "/home/hrehfeld/projects/2023/topics/orgmode.py", line 31, in doc...

This issue is also mentioned in #38, but haven't been resolved in the latest version 36b31d8151e45ac6701822864816b48446d3dcad. Test case (repeated task), modified from [doctest](https://github.com/karlicoss/orgparse/blob/36b31d8151e45ac6701822864816b48446d3dcad/orgparse/node.py#L1398-L1439): ``` >>> from orgparse import loads >>>...

Not sure but it seems that there is no version information available. >>> import orgparse >>> orgparse.__version__ Traceback (most recent call last): File "", line 1, in AttributeError: module 'orgparse'...