Metadata-Version: 2.1
Name: youtube-related
Version: 0.0.1
Summary: Youtube Related Video Fetcher
Home-page: https://github.com/kijk2869/youtube-related
Author: kijk2869
License: MIT
Project-URL: Homepage, https://youtube.com/
Project-URL: Source, https://github.com/kijk2869/youtube-related
Project-URL: Tracker, https://github.com/kijk2869/youtube-related/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/x-rst
Requires-Dist: requests
Requires-Dist: aiohttp

youtube-related
=================

Youtube Related Video Fetcher

Installation
----------------

.. code:: sh

    python3 -m pip install youtube-related

Example
------------

Basic usage

.. code:: python3

    import youtube_related

    print(youtube_related.get('Some Youtube Video URL'))

YouTube's featured video may be repeated regularly, and deque was used to prevent this.

.. code:: python3

    from youtube_related import preventDuplication

    Avoider = preventDuplication()

    print(preventDuplication.get('Some Youtube Video URL'))

