diff --git a/pseudo_config.py b/pseudo_config.py index a255320..d0a04dc 100644 --- a/pseudo_config.py +++ b/pseudo_config.py @@ -1,4 +1,22 @@ #!/usr/bin/python baseurl = 'http://media.home:32400' -token = 'the-token' \ No newline at end of file +token = 'the-token' + +''' +* +* The increment value between scheduled shows. Let's say you want to reposition all shows to have a clean start time divisable by 15 (i.e. 12:30 or 12:45). Use the value "-1" to disregard. +* +* +''' +timeGap = 15 + + +timeBetweenShows = -1 + +''' +* +* If there is an overlap, then the overlapGap var in config will determine the next increment. If it is set to "15", then the show will will bump up to the next 15 minute interval past the hour. If it is set to 30, then it will find the next 30 minute interval past the hour to place the episode. Useful for keeping clean schedules. +* +''' +overlapGap = 15