DEV Community

Yongkang Zhu
Yongkang Zhu

Posted on

systempath

ReleasePython VersionsLicenseDownloads

systempath

(OOP) Operating system paths and files.

Let Python operating system paths and files become Simple, Simpler, Simplest, Humanization, Unification, Flawless.

pip3 install systempath

>>> from systempath import SystemPath, Directory, File

>>> root = SystemPath('/')

>>> home: Directory = root['home']['gqylpy']
>>> home
/home/gqylpy

>>> file: File = home['alpha.txt']
>>> file
/home/gqylpy/alpha.txt

>>> file.open.rb().read()
b'GQYLPY Influence World.'
Enter fullscreen mode Exit fullscreen mode

Top comments (0)