def artist(self):
        artist = Artist()
        artist.name = "irrelevant name " + str(self.number_of_artists)

        artist.thumbnail = str(self.number_of_artists)
        artist.image = str(self.number_of_artists)
        artist.largeImage = str(self.number_of_artists)
        self.number_of_artists += 1
        return artist