Metadata-Version: 2.1
Name: mhyt
Version: 2.35
Summary: Download files from youtube using simple code
Home-page: https://pypi.org/project/mhyt
Author: matan h
Author-email: matan.honig2@gmail.com
License: MIT
Description: # mhyt
        
        
        mhyt is a Python library for
        downloading movies and music from youtube
        
        mhyt can run in python 3+
        
        ## Examples
        ```python
        from mhyt import yt_download
        # download video and audio
        url = "https://www.youtube.com/watch?v=0BVqFYParRs"
        file = "Clouds.mp4"
        yt_download(url,file)
        #########################
        # download music only
        file = "Clouds_music.mp3"
        yt_download(url,file,ismusic=True)
        ```
        ### Installing
        to install with pip
        type in terminal:
        ```
        (sudo) pip install mhyt
        ```
        
        ## Built With
        * [pydub](https://github.com/jiaaro/pydub) - for convert music
        * [a-pytube-fork-for-spotdl-users](https://github.com/nficano/pytube) - to download files from youtube
        * [imageio-ffmpeg](https://github.com/imageio/imageio-ffmpeg) - to download ffmpeg
        ## Author
        **matan h**
        ## License
        This project is licensed under the MIT License.
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0
Description-Content-Type: text/markdown
