Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know this can be easily done using PHP's parse_url and parse_str functions:

$subject = "http://www.youtube.com/watch?v=z_AbfPXTKms&NR=1";
$url = parse_url($subject);
parse_str($url['query'], $query);
var_dump($query);

But how to achieve this using Python? I can do urlparse but what next?

share|improve this question

5 Answers

up vote 25 down vote accepted

Python has a library for parsing URLs.

import urlparse
url_data = urlparse.urlparse("http://www.youtube.com/watch?v=z_AbfPXTKms&NR=1")
query = urlparse.parse_qs(url_data.query)
video = query["v"][0]
share|improve this answer
I can do urlparse but what next? yeah I know, but problem is with the query part. – decarbo Dec 5 '10 at 0:07
@decarbo The updated answer shows you how to extract just the value of the v parameter in the query string. – Phrogz Dec 5 '10 at 5:53
yap, that's the best solution I guess. – decarbo Dec 5 '10 at 19:32

I've created youtube id parser without regexp:

def video_id(value):
    """
    Examples:
    - http://youtu.be/SA2iWivDJiE
    - http://www.youtube.com/watch?v=_oPAwA_Udwc&feature=feedu
    - http://www.youtube.com/embed/SA2iWivDJiE
    - http://www.youtube.com/v/SA2iWivDJiE?version=3&hl=en_US
    """
    query = urlparse(value)
    if query.hostname == 'youtu.be':
        return query.path[1:]
    if query.hostname in ('www.youtube.com', 'youtube.com'):
        if query.path == '/watch':
            p = parse_qs(query.query)
            return p['v'][0]
        if query.path[:7] == '/embed/':
            return query.path.split('/')[2]
        if query.path[:3] == '/v/':
            return query.path.split('/')[2]
    # fail?
    return None
share|improve this answer
match = re.search(r"youtube\.com/.*v=([^&]*)", "http://www.youtube.com/watch?v=z_AbfPXTKms&test=123")
if match:
    result = match.group(1)
else:
    result = ""

Untested.

share|improve this answer

No need for regex. Split on ?, take the second, split on =, take the second, split on &, take the first.

share|improve this answer
work. Do you have any idea if this method is bulletproof enough to be used without bigger worries in market-ready projects ? – decarbo Dec 5 '10 at 0:06
4  
use urlparse for this. don't roll your own with string splitting or regexes. docs.python.org/library/urlparse.html – Corey Goldberg Dec 5 '10 at 0:09
urlparse gives query as a whole so still I need to split it to get ID – decarbo Dec 5 '10 at 1:38
@decarbo, see robert's updated answer – Corey Goldberg Dec 5 '10 at 5:28

Here is something you could try using regex for the youtube video ID:

# regex for the YouTube ID: "^[^v]+v=(.{11}).*"
result = re.match('^[^v]+v=(.{11}).*', url)
print result.group(1)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.