コード例 #1
0
ファイル: discogs.py プロジェクト: one-dash/discogs-flactag
 def clean_name(self, name):
     """
     Cleans up the formatting of artist/label names.
     Discogs orders duplicate names by appending a counter to each dupe
     eg : http://www.discogs.com/search?type=artists&q=goldie&btn=Search
     Goldie
     Goldie (1)
     Goldie (16)
     """
     r = re.compile('\s\(\d+\)')
     return utils.filterThe(r.sub('', name))
コード例 #2
0
ファイル: artist.py プロジェクト: one-dash/discogs-flactag
 def polishName(self, name):
   """
   TODO
   """
   r = re.compile('\s\(\d+\)')
   return utils.filterThe(r.sub('', name))