├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt └── scripts ├── basic ├── channel_to_playlist.py ├── collection_to_channel.py └── playlist_to_channel.py ├── channel_by ├── X_channel.py ├── genre_channel.py ├── keyword_channel.py └── studio_channel.py ├── schedule └── schedule_creator.py ├── trending ├── trending_movies.py └── trending_shows.py └── utilities ├── delete_channels.py ├── find_broken_links.py ├── fix_broken_paths.py ├── make_blank_channels.py └── replace_old_image_url.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwithan8/dizqueTV-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwithan8/dizqueTV-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwithan8/dizqueTV-scripts/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | dizqueTV 2 | progress 3 | plexAPI 4 | -------------------------------------------------------------------------------- /scripts/basic/channel_to_playlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwithan8/dizqueTV-scripts/HEAD/scripts/basic/channel_to_playlist.py -------------------------------------------------------------------------------- /scripts/basic/collection_to_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwithan8/dizqueTV-scripts/HEAD/scripts/basic/collection_to_channel.py -------------------------------------------------------------------------------- /scripts/basic/playlist_to_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwithan8/dizqueTV-scripts/HEAD/scripts/basic/playlist_to_channel.py -------------------------------------------------------------------------------- /scripts/channel_by/X_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwithan8/dizqueTV-scripts/HEAD/scripts/channel_by/X_channel.py -------------------------------------------------------------------------------- /scripts/channel_by/genre_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwithan8/dizqueTV-scripts/HEAD/scripts/channel_by/genre_channel.py -------------------------------------------------------------------------------- /scripts/channel_by/keyword_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwithan8/dizqueTV-scripts/HEAD/scripts/channel_by/keyword_channel.py -------------------------------------------------------------------------------- /scripts/channel_by/studio_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwithan8/dizqueTV-scripts/HEAD/scripts/channel_by/studio_channel.py -------------------------------------------------------------------------------- /scripts/schedule/schedule_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwithan8/dizqueTV-scripts/HEAD/scripts/schedule/schedule_creator.py -------------------------------------------------------------------------------- /scripts/trending/trending_movies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwithan8/dizqueTV-scripts/HEAD/scripts/trending/trending_movies.py -------------------------------------------------------------------------------- /scripts/trending/trending_shows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwithan8/dizqueTV-scripts/HEAD/scripts/trending/trending_shows.py -------------------------------------------------------------------------------- /scripts/utilities/delete_channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwithan8/dizqueTV-scripts/HEAD/scripts/utilities/delete_channels.py -------------------------------------------------------------------------------- /scripts/utilities/find_broken_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwithan8/dizqueTV-scripts/HEAD/scripts/utilities/find_broken_links.py -------------------------------------------------------------------------------- /scripts/utilities/fix_broken_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwithan8/dizqueTV-scripts/HEAD/scripts/utilities/fix_broken_paths.py -------------------------------------------------------------------------------- /scripts/utilities/make_blank_channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwithan8/dizqueTV-scripts/HEAD/scripts/utilities/make_blank_channels.py -------------------------------------------------------------------------------- /scripts/utilities/replace_old_image_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwithan8/dizqueTV-scripts/HEAD/scripts/utilities/replace_old_image_url.py --------------------------------------------------------------------------------