Metadata-Version: 2.1
Name: yt_iframe
Version: 0.7
Summary: YouTube video iframe generator
Home-page: https://github.com/RobbyB97/yt-iframe-python/tree/v0.7
Author: Robby Bergers
Author-email: bergersr@my.easternct.edu
License: MIT
Description: YT iframe Generator
        ================
        yt_iframe is a python module which can convert a youtube video link into an embeddable iframe.
        In order to use this module, install it through your terminal.
        
        ``` console
        foo@bar:~$ pip install yt-iframe
        ```
        ___
        ``` python
        # Import statement
        from yt_iframe import yt
        ```
        ___
        ## Using the module
        
        ### yt.video()
        The video() function takes the youtube video link as a string argument.
        It returns the iframe as a string.
        ___
        ``` python
        url = 'https://www.youtube.com/watch?v=UzIQOQGKeyI'
        iframe = yt.video(url)
        ```
        ___
        ### yt.channel()
        The channel() function takes a youtube channel link as a string argument.
        It returns a list of youtube video links.
        ``` python
        url = 'https://www.youtube.com/user/ouramazingspace'
        videolist = yt.channel(url)
        ```
        ___
        ### yt.getFrames()
        The getFrames() function takes a list of youtube videos as a list argument.
        It returns a list of iframes.
        ``` python
        url = 'https://www.youtube.com/user/ouramazingspace'
        iframes = yt.getFrames(yt.channel(url))
        ```
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
