Metadata-Version: 2.1
Name: MakeTreeDir
Version: 0.1
Summary: OS wrapper python package which checks if a given folder tree path exists and creates them.
Home-page: https://github.com/Sreekiranar/MakeTreeDir.git
Author-email: sreekiranar@gmail.com
License: MIT
Description: # MAKETREEDIR
        
        OS wrapper python package which checks if a given folder tree path exists and creates them.
        
        
        ### Installation
        
        Once you have cloned the repository, you can easily install by
        
        `pip install .`
        
        ### Usage
        
        Consider a situation where you have to create a folder tree like folder structure. i.e Folder inside a folder inside a folder
        If you have to make use of traditional approaches, you have to write a number of loops and checks for doing so using os library.
        This wrapper has already done it and you can create any folder tree structure in one line.
        eg:
        ```python
        from MakeTreeDir import MAKETREEDIR
        MAKETREEDIR().makedir('this/is/a/testing/package/creation')
        
        ```
        The folders will be created instantly.
        ## Authors
        
        * **Sreekiran A R** - *Analytics Consultant, AI Labs, Bridgei2i Analytics Solutions* -
         [Github](https://github.com/Sreekiranar) ,
        [Stackoverflow](https://stackoverflow.com/users/9605907/sreekiran)
        
        
        ## 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
