Pathlib Documentation

Pure path objects provide path-handling operations which don’t actually access a filesystem. There are three ways to access these classes, which we also call flavours: class pathlib.PurePosixPath A subclass of PurePath, this path flavour represents non-Windows filesystem paths: >>> PurePosixPath(’/etc’) PurePosixPath(’/etc’) class ... ................
................