├── .github └── dependabot.yml ├── .pylintrc ├── CHROMECAST.md ├── LICENSE ├── README.md ├── ROADMAP.md ├── chromecast_profile1.jpg ├── epg_sample.png ├── ic_cast_connected_black_24dp.png ├── tvh_epg.py └── webby_user.png /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speculatrix/tvh_epg/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- 1 | [FORMAT] 2 | max-line-length=150 3 | -------------------------------------------------------------------------------- /CHROMECAST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speculatrix/tvh_epg/HEAD/CHROMECAST.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speculatrix/tvh_epg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speculatrix/tvh_epg/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speculatrix/tvh_epg/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /chromecast_profile1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speculatrix/tvh_epg/HEAD/chromecast_profile1.jpg -------------------------------------------------------------------------------- /epg_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speculatrix/tvh_epg/HEAD/epg_sample.png -------------------------------------------------------------------------------- /ic_cast_connected_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speculatrix/tvh_epg/HEAD/ic_cast_connected_black_24dp.png -------------------------------------------------------------------------------- /tvh_epg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speculatrix/tvh_epg/HEAD/tvh_epg.py -------------------------------------------------------------------------------- /webby_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speculatrix/tvh_epg/HEAD/webby_user.png --------------------------------------------------------------------------------