2018-01-23 13:39:49 -06:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: UTF-8 -*-
|
|
|
|
|
|
|
|
class song(object):
|
|
|
|
""" Represents a song in all services. Data will be filled by the service itself"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.bitrate = 0
|
|
|
|
self.title = ""
|
|
|
|
self.artist = ""
|
|
|
|
self.duration = ""
|
|
|
|
self.size = 0
|
2018-01-24 17:41:18 -06:00
|
|
|
self.url = ""
|
2018-01-25 17:18:51 -06:00
|
|
|
self.download_url = ""
|
2018-01-24 17:41:18 -06:00
|
|
|
|
|
|
|
def format_track(self):
|
|
|
|
return "{0}. {1}. {2}".format(self.title, self.duration, self.size)
|