def __init__(self, callNumb, titl, subj, description, distributor, notes,
              series, label):
     Media.__init__(self, callNumb, titl, subj, notes)
     self.description = description
     self.distributor = distributor
     self.series = series
     self.label = label
 def display(self):
     print(
         "--------------------------------------------- Film ---------------------------------------------"
     )
     Media.display(self)
     print("Director: %s" % self.director)
     print("Year: %s" % self.year)
	def display(self):
		print ("--------------------------------------------- Video ---------------------------------------------")
		Media.display(self)
		print ("Description: %s" % self.description)
		print ("Distributor: %s" % self.distributor)
		print ("Series: %s" % self.series)
		print ("Label: %s" % self.label)
Ejemplo n.º 4
0
	def __init__(self, callNumb, titl, subj, author, description, publisher, city, year, series, notes):
		Media.__init__(self, callNumb, titl, subj, notes)
		self.author = author
		self.description = description
		self.publisher = publisher
		self.city = city
		self.year = year
		self.series = series
Ejemplo n.º 5
0
	def display(self):
		print ("--------------------------------------------- Book ---------------------------------------------")
		Media.display(self)
		print ("Author: %s" % self.author)
		print ("Description: %s" % self.description)
		print ("Publisher: %s" % self.publisher)
		print ("City: %s" % self.city)
		print ("Year: %s" % self.year)
		print ("Series: %s" % self.series)
 def display(self):
     print(
         "--------------------------------------------- Video ---------------------------------------------"
     )
     Media.display(self)
     print("Description: %s" % self.description)
     print("Distributor: %s" % self.distributor)
     print("Series: %s" % self.series)
     print("Label: %s" % self.label)
	def __init__(self, callNumb, titl, subj, author, description, publisher, publishing_history, series, notes, related_titles, other_forms_of_title, 
	govt_doc_number):
		Media.__init__(self, callNumb, titl, subj, notes)
		self.author = author
		self.description = description
		self.publisher = publisher
		self.publishing_history = publishing_history
		self.series = series
		self.related_titles = related_titles
		self.other_forms_of_title = other_forms_of_title
		self.govt_doc_number = govt_doc_number
	def display(self):
		print ("--------------------------------------------- Periodic ---------------------------------------------")
		Media.display(self)
		print ("Author: %s" % self.author)
		print ("Description: %s" % self.description)
		print ("Publisher: %s" % self.publisher)
		print ("Publishing history: %s" % self.publishing_history)
		print ("Series: %s" % self.series)
		print ("Related titles: %s" % self.related_titles)
		print ("Other forms of title: %s" % self.other_forms_of_title)
		print ("Govt doc number: %s" % self.govt_doc_number)
Ejemplo n.º 9
0
 def __init__(self, callNumb, titl, subj, author, description, publisher,
              publishing_history, series, notes, related_titles,
              other_forms_of_title, govt_doc_number):
     Media.__init__(self, callNumb, titl, subj, notes)
     self.author = author
     self.description = description
     self.publisher = publisher
     self.publishing_history = publishing_history
     self.series = series
     self.related_titles = related_titles
     self.other_forms_of_title = other_forms_of_title
     self.govt_doc_number = govt_doc_number
Ejemplo n.º 10
0
 def display(self):
     print(
         "--------------------------------------------- Periodic ---------------------------------------------"
     )
     Media.display(self)
     print("Author: %s" % self.author)
     print("Description: %s" % self.description)
     print("Publisher: %s" % self.publisher)
     print("Publishing history: %s" % self.publishing_history)
     print("Series: %s" % self.series)
     print("Related titles: %s" % self.related_titles)
     print("Other forms of title: %s" % self.other_forms_of_title)
     print("Govt doc number: %s" % self.govt_doc_number)
 def __init__(self, callNumb, titl, subj, director, notes, year):
     Media.__init__(self, callNumb, titl, subj, notes)
     self.director = director
     self.year = year
	def __init__(self, callNumb, titl, subj, description, distributor, notes, series, label):
		Media.__init__(self, callNumb, titl, subj, notes)
		self.description = description
		self.distributor = distributor
		self.series = series
		self.label = label
	def __init__(self, callNumb, titl, subj, director, notes, year):
		Media.__init__(self, callNumb, titl, subj, notes)
		self.director = director
		self.year = year
	def display(self):
		print ("--------------------------------------------- Film ---------------------------------------------")
		Media.display(self)
		print ("Director: %s" % self.director)
		print ("Year: %s" % self.year)