Metadata-Version: 2.1
Name: getpaths
Version: 0.0.3
Summary: Pathing Library
Home-page: UNKNOWN
Author: Jv Kyle Eclarin
Author-email: <jvykleeclarin@gmail.com>
License: UNKNOWN
Description: # getpath
        Helps with pathing issues in python scripts. Inspired by pathlib, but smaller.
        
        # IMPORTING
        ```
        from getpaths import getpath
        ```
        
        # USING CURRENT FILE PATH
        ```
        current_dir = getpath() # current file's path
        ```
        
        # USER-SPECIFIED PATH
        ```
        custom_dir = getpath('a','b',custom=True)
        print(custom_dir)
        # /a/b
        ```
        
        # ADD FILES
        ```
        custom_dir/'example.txt'
        # /a/b/example.txt
        
        custom_dir.add('/a/example.txt')
        # /a/b/example.txt
        ```
        
        #  GO UP THE DIRECTORY
        ```
        custom_dir = getpath('a', 'b', ,custom=True)
        
        custom_dir/'..'
        # /a
        
        custom_dir.add('..')
        # /a
        
        custom_dir.up(1)
        # /a
        ```
        
        # LIST EXISTING FILES AND FOLDERS
        ```
        custom_dir.ls()
        # /a/b/example.txt
        # throws error if path does not exist
        ```
Keywords: python,pathing,path
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Education
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
