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

Method aired_on

tvdb_api.py:349–353  ·  view source on GitHub ↗
(self, date)

Source from the content-addressed store, hash-verified

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 """

Callers 1

test_aired_onMethod · 0.80

Calls 1

searchMethod · 0.95

Tested by 1

test_aired_onMethod · 0.64