13 lines
263 B
Python

class Song():
"""Deal with information of a song"""
def __init__(self, source) -> None:
self.__source = source
self.__get_info()
def __get_info(self):
pass
def info():
"""Return the compiled info of this song"""