YSK: there is a library called pathlib with different methods for accessing files which you might like since they do not require a context manager
https://docs.python.org/3/library/pathlib.html
I'm creating this post mainly so that I don't forget the name again.
It's also a really fun example of operator overloading.
__div__is overloaded to allow this syntax.There was a discussion of pathlib a few days ago: https://programming.dev/post/21864360
sorry, I was looking for it today, which prompted me to create this post
I subconsciously replace
os.pathwithpathlibwhenever touching any module for a refactor.os/os.pathfunctions are named after their C counterparts.They still messed up the default encoding though unfortunately.
😢
you can also enable this rule set to remind you https://docs.astral.sh/ruff/rules/#flake8-use-pathlib-pth
hell ye