mirror of
https://github.com/Hopiu/python-markdown-oembed.git
synced 2026-03-17 06:20:24 +00:00
16 lines
434 B
Python
16 lines
434 B
Python
# -*- coding: utf-8 -*-
|
|
import oembed
|
|
|
|
|
|
ENDPOINTS = {
|
|
'youtube': oembed.OEmbedEndpoint('http://www.youtube.com/oembed', [
|
|
'http://(*.)?youtube.com/*',
|
|
'http://youtu.be/*',
|
|
]),
|
|
'flickr': oembed.OEmbedEndpoint('http://www.flickr.com/services/oembed/', [
|
|
'http://*.flickr.com/*',
|
|
]),
|
|
'vimeo': oembed.OEmbedEndpoint('http://vimeo.com/api/oembed.json', [
|
|
'http://vimeo.com/*',
|
|
]),
|
|
}
|