Skip to content
This repository has been archived by the owner on Jun 28, 2022. It is now read-only.

kijk2869/youtube-related

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

youtube-related

PyPI PyPI - Python Version GitHub PyPI - Downloads

Youtube Related Video Fetcher

Installation

python3 -m pip install youtube-related

Example

Basic usage

import youtube_related

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

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

from youtube_related import preventDuplication

Avoider: preventDuplication = preventDuplication()

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