MCPcopy Create free account
hub / github.com/dbr/tvdb_api / _setShowData

Method _setShowData

tvdb_api.py:897–902  ·  view source on GitHub ↗

Sets self.shows[sid] to a new Show instance, or sets the data

(self, sid, key, value)

Source from the content-addressed store, hash-verified

895 self.shows[sid][seas][ep][attrib] = value
896
897 def _setShowData(self, sid, key, value):
898 """Sets self.shows[sid] to a new Show instance, or sets the data
899 """
900 if sid not in self.shows:
901 self.shows[sid] = Show()
902 self.shows[sid].data[key] = value
903
904 def search(self, series):
905 """This searches TheTVDB.com for the series name

Callers 3

_parseBannersMethod · 0.95
_parseActorsMethod · 0.95
_getShowDataMethod · 0.95

Calls 1

ShowClass · 0.85

Tested by

no test coverage detected