7 lines
166 B
Python
7 lines
166 B
Python
|
|
class EmbedFinder:
|
||
|
|
def accept(self, url):
|
||
|
|
return False
|
||
|
|
|
||
|
|
def find_embed(self, url, max_width=None, max_height=None):
|
||
|
|
raise NotImplementedError
|