SwordInStone@lemmy.world to Python@programming.dev · edit-222 days agoYSK: there is a library called pathlib with different methods for accessing files which you might like since they do not require a context manager message-squaremessage-square10fedilinkarrow-up127arrow-down114file-text
arrow-up113arrow-down1message-squareYSK: there is a library called pathlib with different methods for accessing files which you might like since they do not require a context manager SwordInStone@lemmy.world to Python@programming.dev · edit-222 days agomessage-square10fedilinkfile-text
https://docs.python.org/3/library/pathlib.html I’m creating this post mainly so that I don’t forget the name again.
minus-squaredallen@programming.devlinkfedilinkarrow-up4·22 days agoI subconsciously replace os.path with pathlib whenever touching any module for a refactor.
I subconsciously replace
os.path
withpathlib
whenever touching any module for a refactor.