Metadata-Version: 2.1
Name: treeHandler
Version: 1.3
Summary: Python OS wrapper to grab all/specific files and folder containing those files from all the subdirectories
Home-page: UNKNOWN
Author-email: sreekiranar@gmail.com
License: MIT
Description: # tree-handler
        
        OS wrapper to grab specific/all files from all the subdirectories of the given folder, process
        them with your algorithm and save the output retaining the same input structure
        
        
        ### Installation
        
        You can easily install the package using
        
        `pip install treeHandler`
        
        ### Usage
        This package will help you to find all/specific files from the subdirectories of a given directory.
        Thus you can process these files and save them retaining the complex tree structure.
        
        eg:
        If you have a complex tree structured folder and you need to get all the
        files from the folder, use
        ```python
        from treeHandler import treeHandler
        th=treeHandler()
        fileFolder,fileList=th.getFiles('inputFolder')
        ### fileFolder will contain the path of folders which contains files
        ### fileList will contain the path of the files inside
        
        ### If you need specific file extensions eg: .jpg,.png
        th.getFiles('inputFolder',['jpg','png'])
        
        ### If you need case sensitive (only lowercase 'jpg')
        th.getFiles('inputFolder',['jpg'],caseSensitive=True)
        ```
        The output will be obtained instantly.
        ## Authors
        
        * **Sreekiran A R** - *Senior Analytics Consultant, AI Labs, Bridgei2i Analytics Solutions* -
         [Github](https://github.com/Sreekiranar) ,
        [Stackoverflow](https://stackoverflow.com/users/9605907/sreekiran)
        
        * **Anil Prasad M N** - *Project Manager, AI Labs, Bridgei2i Analytics Solutions* -
         [Github](https://github.com/anilprasadmn)
        
        ## License
        
        This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
