Sets self.shows[sid] to a new Show instance, or sets the data
(self, sid, key, value)
| 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 |
no test coverage detected