Metadata-Version: 1.1
Name: Pathway
Version: 1.01
Summary: A library for interacting with the filesystem
Home-page: UNKNOWN
Author: LeafStorm
Author-email: leafstormrush@gmail.com
License: UNKNOWN
Description: Pathway is a module for interacting with the filesystem in a clean,
        object-oriented manner. For example, instead of::
        
        datafile = os.path.join(datapath, 'somedata.txt')
        if os.path.exists(datafile)
        os.rename(datafile, datafile + '.old')
        fd = open(datafile, 'w')
        fd.write(data)
        fd.close()
        
        You can write the much cleaner:
        
        datadir = pathway.new(datapath)
        if 'somedata.txt' in datadir:
        datadir['somedata.txt'].rename('somedata.txt.old', overwrite=True)
        datadir.create('somedata.txt', data)
        
        The majority of filesystem operations have corresponding methods. The module
        itself has no dependencies besides Python.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: System :: Filesystems
Provides: pathway
