mirror of https://github.com/zulip/zulip.git
15 lines
435 B
Python
15 lines
435 B
Python
from typing import Optional, Dict, Any
|
|
from pyoembed import oEmbed, PyOembedException
|
|
|
|
|
|
def get_oembed_data(url: str,
|
|
maxwidth: Optional[int]=640,
|
|
maxheight: Optional[int]=480) -> Optional[Dict[str, Any]]:
|
|
try:
|
|
data = oEmbed(url, maxwidth=maxwidth, maxheight=maxheight)
|
|
except PyOembedException:
|
|
return None
|
|
|
|
data['image'] = data.get('thumbnail_url')
|
|
return data
|