karlicoss
karlicoss
This looks interesting https://github.com/PyFilesystem/pyfilesystem2
Interesting enough, there are some useful functions in the standard library https://docs.python.org/3/library/shutil.html#shutil.unpack_archive https://docs.python.org/3/library/tarfile.html#tarfile.open However seems that it only supports `.tar` packed files, so not possible to use it as a...
Actually `tarfile` isn't too bad, seems that it's capable of guessing compression and the interface is okay. So might be possible to have a short wrapper similar to `ZipPath` if...
Good question! Not 100% sure as I'm not the original author of the library, but it looks very well written and thorough judging by source code, so I'd say it's...
@MarcvdSluys no problem! There are `start/end` methods: [here](https://orgparse.readthedocs.io/en/latest/#orgparse.date.OrgDate.start), does that work for you? `start` is what I'm using in my tools to get native Python dates.
Perhaps it makes most sense to implement a supplementary method for that (e.g. `content_rich`/`heading_rich` or something, that would return a list of objects)
related: https://github.com/karlicoss/orgparse/issues/12 I'll think about it over the weekend!
Hmm good idea! So far I've been locating a named heading & extracting the table under it (assuming it's the only one), whereas if we used the name, it would...
Hi! Thanks for good questions! I guess ultimate goal is to have a fast, well tested and stable Python org-mode parser. Another thing I'd like it to keep is BSD...
Hmm, is there a good reason you want to move it out? I think in orgparse specifically it's just always been like that -- but also generally I prefer keeping...