Metadata-Version: 1.1
Name: strpath
Version: 0.01
Summary: Proof-of-concept for Path objects based on the str type
Home-page: http://groups.google.com/group/python-dbase
Author: Ethan Furman
Author-email: ethan@stoneleaf.us
License: BSD License
Description: 
        strpath is a usable proof-of-concept for having a path object based on the str type.
        
        Example usage:
        
            from path import Path
        
            --> job = Path(r'c:/orders/12345/')
            --> table = job / 'abc67890.dbf'
            --> table
            Path('c:\orders\12345\abc67890.dbf')
            --> table.path
            Path('c:\orders\12345\')
            --> table.filename
            Path('abc67890.dbf')
            --> table.basename
            Path('abc67890')
            --> table.ext
            Path('.dbf')
            --> dest = table.replace('c:/orders','//another_machine/orders')
            --> dest
            Path('\\another_machine\orders\12345\abc67890.dbf')
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Provides: Path
