Get keywords from YouTube video meta tag.

My wife was wanting to see meta tags embedded in YouTube videos so I whipped up this quick Python script.

Install Python 3

Install Beautiful Soup
Ubuntu:

sudo apt-get install python3-bs4
sudo apt-get install python-lxml

PIP:

python3 -m pip install BeautifulSoup4
python3 -m pip install lxml

Python

Result:
URL: https://www.youtube.com/watch?v=BWYiMcH0cRc
****************************************
indoor plants
indoor plant guide
house plants

Make it a simple Tk application:

Python