repo.or.cz
/
xbmc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ExecString] combine SplitParameters with identical function of CUtil
[xbmc.git]
/
addons
/
metadata.generic.artists
/
lib
/
nfo.py
blob
7aeb7ff06cc162df6159ce549c719939c298a9c3
1
# -*- coding: utf-8 -*-
2
3
import
re
4
5
def
nfo_geturl
(
data
):
6
result
=
re
.
search
(
'https://musicbrainz.org/(ws/2/)?artist/([0-9a-z\-]*)'
,
data
)
7
if
result
:
8
return
result
.
group
(
2
)