Skip to content

Instantly share code, notes, and snippets.

@sugavaneshb
Created October 23, 2014 11:21
Show Gist options
  • Save sugavaneshb/a6df17ff45a84112884a to your computer and use it in GitHub Desktop.
Save sugavaneshb/a6df17ff45a84112884a to your computer and use it in GitHub Desktop.
embeds_re = re_compile(r'''
(?:youtube(?:-nocookie)?\.com # youtube.com or youtube-nocookie.com
| # or
youtu\.be)/ # youtu.be
(?:embed/|watch\?v=|watch/\?v=|embed/\?v=)? # /embed/... or /watch?v=... or /watch/?v=... or /embed/?v=... or /...
([^\s\"\?&]{11}) # capture & stop at whitespace " ? &
''', VERBOSE)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment