├── CNAME ├── static ├── images │ └── favicon.ico ├── js │ ├── youtube.js │ ├── scripts.js │ └── controller.js └── css │ └── styles.css ├── add_youtube_durations.py ├── index.html ├── README.md └── videos.json /CNAME: -------------------------------------------------------------------------------- 1 | pymust.watch 2 | -------------------------------------------------------------------------------- /static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s16h/py-must-watch/HEAD/static/images/favicon.ico -------------------------------------------------------------------------------- /static/js/youtube.js: -------------------------------------------------------------------------------- 1 | // Asynchronously load the YouTube API 2 | var tag = document.createElement('script'); 3 | tag.src = 'https://www.youtube.com/iframe_api'; 4 | var firstScriptTag = document.getElementsByTagName('script')[0]; 5 | firstScriptTag.parentNode.insertBefore(tag, firstScriptTag); 6 | 7 | // Creates an