Exemplo n.º 1
0
def songLocation(graph, songUri):
    loc = URIRef("file://%s" % songOnDisk(songUri))
    _songUris[loc] = songUri
    return loc
Exemplo n.º 2
0
 def allSongPaths(self):
     """Returns a list of the filesystem paths to all songs in order."""
     paths = []
     for song in self.songs:
         paths.append(songOnDisk(song))
     return paths