cliche.people — Artists, teams, and editors

class cliche.people.Person(**kwargs)

People i.e. artists, editors.

created_at

(datetime.datetime) The created time.

credits

(collections.abc.MutableSet) The set of cliche.work.Credits that the person has.

dob

(datetime.date) The date of birth.

dod

(datetime.date) The date of death.

id

(int) The primary key integer.

memberships

(collections.abc.MutableSet) The set of TeamMemberships he/she has.

teams

(collections.abc.MutableSet) The set of Teams he/she belongs to.

class cliche.people.Team(**kwargs)

Teams (including ad-hoc teams).

created_at

(datetime.datetime) The created time.

credits

(collections.abc.MutableSet) The set of cliche.work.Credits in which the team was involved.

id

(int) The primary key integer.

members

(collections.abc.MutableSet) The members Person set.

memberships

(collections.abc.MutableSet) The set of TeamMemberships that the team has.

class cliche.people.TeamMembership(**kwargs)

Team memberships to people.

created_at

(datetime.datetime) The added time.

member

(Person) The member who is a member of the team.

member_id

(int) Person.id of member.

team

(Team) The team that the member belongs to.

team_id

(int) Team.id of team.