Metadata-Version: 2.1
Name: dwanimes
Version: 0.1.0
Summary: Download your anime
Home-page: https://github.com/jbuendia1y/download-animes
Author: jbuendia1y (Joaquín Buendía)
License: UNKNOWN
Description: # Download animes
        
        Download any anime from the web with only one command in your PC.
        
        ## Instalation
        
        Execute command:
        
        ```bash
        pip install dwanimes
        ```
        
        ## To use CLI
        
        ```bash
        dw-animes --help
        ```
        
        ## To use library
        
        ```py
        import pydwanimes
        
        # Directory to save animes
        directory = "/home/my-user/Videos"
        
        # Compose optional loading class
        loading = pydwanimes.loading.tqdm_loading.TqdmLoading()
        
        # Compose site class
        config = {
            "directory": directory,
            "loading": loading,
        }
        site = pydwanimes.sites.anime_fenix.AnimeFenix(config)
        
        # Download anime chapter
        site.download_multimedia("spy-x-family", 1)
        ```
        
Keywords: download,anime
Platform: UNKNOWN
Description-Content-Type: text/markdown
