class MangaMetaInfo: title = "" url = "" Series = "" artists = [] Tags = [] fileurl = "" galID = "" def AddArtist(self, strArtist): self.artists.append(strArtist) def AddTag(self, strTag): self.tags.append(strTag) class SeriesInfo: strSeries = "" strUrl = "" def __init__(self, series, url): self.strSeries = series self.strUrl = url class TypeInfo: strTyep = "" strUrl = "" def __init__(self, strType, url): self.strTyep = strType self.strUrl = url class ArtistInfo: strArtist = "" strUrl = "" def __init__(self, artist, url): self.strArtist = artist self.strUrl = url class TagIngo: strTag = "" strUrl = "" def __init__(self, tag, url): self.strTag = tag self.strUrl = url