13 lines
321 B
Python
13 lines
321 B
Python
#!/usr/bin/python
|
|
|
|
import clockytracklist
|
|
|
|
print("-------------------------------------")
|
|
print("-------------------------------------")
|
|
tl=clockytracklist.ClockyTracklist("mp3",True)
|
|
tl.ShowTrackList()
|
|
print("-------------------------------------")
|
|
t2=clockytracklist.ClockyTracklist("C:\data",True)
|
|
t2.ShowTrackList()
|
|
|