Metadata-Version: 1.2
Name: pyytdata
Version: 0.1.1
Summary: this is a simple client for youtube data api v3
Home-page: https://github.com/princekrroshan01/youtube-api-wrapper
Author: Prince Roshan
Author-email: princekrroshan01@gmail.com
License: MIT
Description: pyytdata
        ========
        
        This is an youtube api v3 wrapper which is integrated in any python app
        basically in web app which recommend youtube videos 
        
        .. image:: https://img.shields.io/pypi/v/pyytdata
           :target: https://pypi.python.org/pypi/pyytdata/
        
        .. image:: https://travis-ci.org/princekrroshan01/YouTubeDataApi_Wrapper.svg?branch=master
            :target: https://travis-ci.org/princekrroshan01/YouTubeDataApi_Wrapper
            
        .. image:: https://img.shields.io/pypi/pyversions/pyytdata.svg
           :target: https://pypi.python.org/pypi/pyytdata/
           
        .. image:: https://img.shields.io/pypi/l/pyytdata.svg
           :target: https://pypi.python.org/pypi/pyytdata/
           
        .. image:: https://img.shields.io/pypi/dm/pyytdata.svg
           :target: https://pypi.python.org/pypi/pyytdata/
        
        .. image:: https://img.shields.io/pypi/format/pyytdata.svg
           :target: https://pypi.python.org/pypi/pyytdata/
        
        .. image:: https://coveralls.io/repos/github/princekrroshan01/YouTubeDataApi_Wrapper/badge.svg
           :target: https://coveralls.io/github/princekrroshan01/YouTubeDataApi_Wrapper
        
        
        
        
        Demo
        ----
        
        .. figure:: pyytdata.gif
           :alt: PyYtData demo
        
          
        Prerequisites
        -------------
        
        Get the youtube data v3 api key from
        https://console.developers.google.com/apis/ Set environment variable
        API\_KEY='Your YoutubeDatav3 API key' and also
        GOOGLE\_APPLICATION\_CREDENTIALS='path/to/json/file' Reference to set
        GOOGLE\_APPLICATION\_CREDENTIALS
        https://cloud.google.com/docs/authentication/getting-started
        
        Installation
        ------------
        
        ::
        
               pip install pyytdata 
        
        using
        -----
        
        ::
        
                from pyytdata import pyytdata
                # keyword is the query you want to search from 
                # youtube data api and maxlen is no. of video you want.
                
                p=pyytdata.PyYtData(keyword,maxlen) 
                                                            
                #function call for titles of video
                
                output=p.get_titles() 
        
                #function to open the specific video in web browser
                
                output=p.open_id(item_no)  
        
        General Info
        ------------
        
        Have a look at the example to get acquaint with the use cases.
        
        Contributing
        ------------
        
        Pull requests are welcome. For major changes, please open an issue first
        to discuss what you would like to change.
        
Keywords: youtube-apirecommend-youtube-videos,youtube-data,python,wrapper,youtube-data-api-v3,youtube-api-wrapper,youtube-api-v3
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
