mirror of
https://github.com/Hopiu/python-markdown-oembed.git
synced 2026-03-16 22:10:24 +00:00
21 lines
461 B
Python
21 lines
461 B
Python
# -*- coding: utf-8 -*-
|
|
import oembed
|
|
|
|
|
|
DEFAULT_ENDPOINTS = [
|
|
# Youtube
|
|
oembed.OEmbedEndpoint('http://www.youtube.com/oembed', [
|
|
'https?://(*.)?youtube.com/*',
|
|
'https?://youtu.be/*',
|
|
]),
|
|
|
|
# Flickr
|
|
oembed.OEmbedEndpoint('http://www.flickr.com/services/oembed/', [
|
|
'https?://*.flickr.com/*',
|
|
]),
|
|
|
|
# Vimeo
|
|
oembed.OEmbedEndpoint('http://vimeo.com/api/oembed.json', [
|
|
'https?://vimeo.com/*',
|
|
]),
|
|
]
|