Justin Luthy

Results 1 comments of Justin Luthy

it appears that oembed resources are discoverable by doing something like ```python oembed = soup.find_all('link', rel=['alt', 'alternate', 'alternative'], type=['application/json+oembed', 'application/xml+oembed']) oembed_json = requests.get(oembed[0].get('href')) #returns oembed json or xml ``` this...