cliche.work — Things associated with a creative work.¶
-
class
cliche.work.Character(**kwargs)¶ Fictional character that appears in creative work.
-
derived_characters¶ (:class:’collections.abc.MutableSet’) The set of
Characters which is derived from this character
-
original_character¶ (:class:’Character’) The original character from which this character is derived.
-
original_character_id¶ (:class:’int’)
Character.idoforiginal_character.
-
works¶ (
collections.abc.MutableSet) The set ofWorks in which the character appeared.
-
-
class
cliche.work.Credit(**kwargs)¶ Relationship between the work, the person, and the team. Describe that the person participated in making the work.
-
created_at¶ (
datetime.datetime) The date and time on which the record was created.
-
person¶ (
cliche.people.Person) The person who made thework.
-
person_id¶ (
int)cliche.people.Person.idofperson.
-
role¶ The person’s role in making the work.
-
team¶ The team which the person belonged when work had been made.
-
-
class
cliche.work.Franchise(**kwargs)¶ Multimedia franchise that is a franchise for which installments exist in multiple forms of media, such as books, comic books, and films, for example The Lord of the Rings and Iron Man.
-
created_at¶ (
datetime.datetime) The date and time on which the record was created.
-
work_franchises¶ (
collections.abc.MutableSet) The set ofWorkFranchises that the franchise has.
-
works¶ (
collections.abc.MutableSet) The set ofWorks that belongs to the franchise.
-
-
class
cliche.work.Genre(**kwargs)¶ Genre of the creative work
-
created_at¶ (
datetime.datetime) The date and time on which the record was created.
-
work_genres¶ (
collections.abc.MutableSet) The set ofWorkGenres that the genre has.
-
works¶ (
collections.abc.MutableSet) The set ofWorks that fall into the genre.
-
-
class
cliche.work.Role¶ Python enum type to describe role of him/her in making a work.
-
class
cliche.work.Work(**kwargs)¶ Creative work(s) that could be a single work like a film, or a series of works such as a combic book series and a television series.
-
characters¶ (
collections.abc.MutableSet) The set ofCharacters that appeared in the work.
-
created_at¶ (
datetime.datetime) The date and time on which the record was created.
-
credits¶ (
collections.abc.MutableSet) The set ofCredits that the work has.
-
franchises¶ (
collections.abc.MutableSet) The set ofFranchises that the work belongs to.
-
genres¶ (
collections.abc.MutableSet) The set ofGenres that the work falls into.
-
published_at¶ (
datetime.date) The publication date.
-
tropes¶ (
collections.abc.MutableSet) The set ofTrope.
-
work_franchises¶ (
collections.abc.MutableSet) The set ofWorkFranchises that the work has.
-
work_genres¶ (
collections.abc.MutableSet) The set ofWorkGenres that the work has.
-
work_tropes¶ (
collections.abc.MutableSet) The set ofWorkTrope.
-
-
class
cliche.work.WorkCharacter(**kwargs)¶ Relationship between the character and the work. Describe that the character appeared in the work.
-
character_id¶ (
int)Character.idofcharacter.
-
created_at¶ (
datetime.datetime) The date and time on which the record was created.
-
-
class
cliche.work.WorkFranchise(**kwargs)¶ Relationship between the work and the Franchise.
-
created_at¶ (
datetime.datetime) The date and time on which the record was created.
-
franchise_id¶ (
int)Franchise.idoffranchise.
-
-
class
cliche.work.WorkGenre(**kwargs)¶ Relationship between the work and the genre.
-
created_at¶ (
datetime.datetime) The date and time on which the record was created.
-
-
class
cliche.work.World(**kwargs)¶ Fictional universe that is a self-consistent fictional setting with elements that differ from the real world, for example Middle-earth and Marvel Cinematic Universe.
-
created_at¶ (
datetime.datetime) The date and time on which the record was created.
-
franchises¶ (
collections.abc.MutableSet) The set ofFranchises that belong the world.
-