Davtax / arXiv-sorter

Sort the daily arXiv mail list by user keyworks, and output the manuscripts in a nice markdown.
MIT License
3 stars 0 forks source link

Use absolute paths, intead of relative #39

Open Davtax opened 4 days ago

Davtax commented 4 days ago

Right now, the code always uses relative paths. However, this can be a huge problem if the user decides to move the files to other folders via optional arguments. To avoid this, I think it is a better practice to always use absolute paths.

Davtax commented 3 days ago

This can be done via the pathlib library. This is the perfect opportunity to learn about this library and how to use it properly.