Files
recordingprocessing/libtvshow.py
2013-07-06 23:14:41 +10:00

19 lines
557 B
Python

# -*- coding: utf-8 -*-
"""
Created on Sat Jul 6 20:26:22 2013
@author: shanef
"""
class TVShow(object):
def __init__(self, episode, season, title, subtitle, description, inputFile='', outputFile=''):
self.episode = str(episode)
self.season = str(season)
self.title = title
self.subtitle = subtitle
self.description = description
self.inputFile = inputFile
self.outputFile = outputFile
def Print(self):
print "Input: {0} -> Output: {1}".format(self.inputFile, self.outputFile)