pathbypath
pathbypath is a Python library designed for simplifying file and directory path manipulation. It offers an object-oriented approach to handling paths, making common operations more intuitive and readable compared to standard library functions. The library provides a Path class that represents a file system path. Instances of this class can be created using a string representation of the path.
Key features of pathbypath include methods for joining path components, checking for the existence of files
pathbypath is often considered as an alternative or extension to Python's built-in `os.path` module and the `pathlib`