Metadata-Version: 2.1
Name: youtube-data-api
Version: 0.0.3
Summary: youtube-data-api is a Python wrapper for the YouTube Data API.
Home-page: https://github.com/mabrownnyu/youtube-data-api
Author: Leon Yin, Megan Brown
License: MIT
Description: # Youtube Data API
        <a href="https://badge.fury.io/py/youtube-data-api"><img src="https://badge.fury.io/py/youtube-data-api.svg" alt="PyPI version" height="18"></a>
        <a href="https://travis-ci.com/SMAPPNYU/youtube-data-api"><img src="https://travis-ci.com/SMAPPNYU/youtube-data-api.svg?branch=master" alt="Build status" height="18"></a>
        
        This is a Python client for the Python Data API. It was written to accomodate v3 of the API.
        
        ## Install
        
        It is recommended to [install this module by using pip](https://pypi.org/project/youtube-data-api/):
        
        ```
        pip install youtube-data-api
        ```
        
        If you want to use it from source, you'll have to install the dependencies manually:
        
        ```
        pip install -r requirements.txt
        ```
        
        ## Quickstart
        In order to access the API, you'll need to get a [service key](https://developers.google.com/youtube/registering_an_application#Create_API_Keys) from the [Google Cloud Console](https://console.cloud.google.com/).
        
        Once you have it you can use it to initiate the `YoutubeDataApi` class.
        ```
        from youtube_api import YoutubeDataApi
        
        api_key = 'AKAIXXXXXXXX'
        yt = YoutubeDataApi(api_key)
        
        yt.search('alexandria ocasio-cortez')
        ```
        
        The `yt` object calls functions that automate the collection of data fields that are both visable and not-visable to everyday users.
        
        Please refer to the documentation (forthcoming!) for details.
        
        ## Testing
        Static json files used for test are stored in `./tests/data`.
        To test, command line input `make test`.
        
        Written by Leon Yin and Megan Brown
        
Keywords: youtube-data-api youtube-data youtube-api wrapper youtube tweepy social-media
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
