Metadata-Version: 2.1
Name: octodir
Version: 1.0.0
Summary: Tool for downloading directories from Github repositories
Home-page: https://github.com/Jalkhov/octodir
Author: Pedro Torcatt
Author-email: pedrotorcattsoto@gmail.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/Jalkhov/octodir/issues
Project-URL: Source, https://github.com/Jalkhov/octodir/
Description: <div align="center">
            <img src="logo.png">
        </div>
        
        Tool for downloading directories from Github repositories.
        
        # Installation
          ```
          $ pip install octodir
          ```
        
        # Use
        
        ## From the console
        
        ```
        $ octodir
        ```
        
        **You will be asked for the following data:**
        
        * **Full folder url:** Direct url to the target folder
          * **Example:** `https://github.com/Jalkhov/octodir/tree/stable/octodir`
        * **Output folder**: Absolute path of the output directory
          * You can enter a dot to download in the current working directory
        
        ## In code
        
        ```python
        from octodir import Octodir
        
        target = 'https://github.com/Jalkhov/Octodir/tree/stable/octodir'
        folder = '.' # Current working directory
        
        Octo = Octodir(target, folder)
        Octo.dowload_folder()
        ```
        
        # Support me <3
        
        <a href="https://www.buymeacoffee.com/Jalkhov" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" ></a>
        
Keywords: github directory download
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3
Classifier: Natural Language :: English
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.0
Description-Content-Type: text/markdown
