(self, date)
| 347 | raise tvdb_attributenotfound("Cannot find attribute %s" % (repr(key))) |
| 348 | |
| 349 | def aired_on(self, date): |
| 350 | ret = self.search(str(date), 'firstAired') |
| 351 | if len(ret) == 0: |
| 352 | raise tvdb_episodenotfound("Could not find any episodes that aired on %s" % date) |
| 353 | return ret |
| 354 | |
| 355 | def search(self, term=None, key=None): |
| 356 | """ |