2012-11-13 21:28:10 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
import oembed
|
|
|
|
|
|
|
|
|
|
|
2015-04-21 09:18:42 +00:00
|
|
|
DEFAULT_ENDPOINTS = [
|
|
|
|
|
# Youtube
|
|
|
|
|
oembed.OEmbedEndpoint('http://www.youtube.com/oembed', [
|
2014-07-14 19:44:36 +00:00
|
|
|
'https?://(*.)?youtube.com/*',
|
|
|
|
|
'https?://youtu.be/*',
|
2012-11-13 21:28:10 +00:00
|
|
|
]),
|
2015-04-21 09:18:42 +00:00
|
|
|
|
|
|
|
|
# Flickr
|
|
|
|
|
oembed.OEmbedEndpoint('http://www.flickr.com/services/oembed/', [
|
2014-07-14 19:44:36 +00:00
|
|
|
'https?://*.flickr.com/*',
|
2012-11-13 21:28:10 +00:00
|
|
|
]),
|
2015-04-21 09:18:42 +00:00
|
|
|
|
|
|
|
|
# Vimeo
|
|
|
|
|
oembed.OEmbedEndpoint('http://vimeo.com/api/oembed.json', [
|
2014-07-14 19:44:36 +00:00
|
|
|
'https?://vimeo.com/*',
|
2012-11-13 21:28:10 +00:00
|
|
|
]),
|
|
|
|
|
}
|