Bases: stalker.core.models.entity.Entity, stalker.core.models.mixin.ReferenceMixin, stalker.core.models.mixin.StatusMixin, stalker.core.models.mixin.ScheduleMixin
All the information about a Project in Stalker is hold in this class.
Project is one of the main classes that will direct the others. A project in Stalker is a gathering point.
It is mixed with ReferenceMixin, StatusMixin and ScheduleMixin to give reference, status and schedule abilities.
Parameters: |
|
---|
Methods
__init__(2, **kwargs[, start_date, ...]) |
Attributes
assets | the list of assets created in this project |
code | The code name of this object. |
created_by | The User who has created |
date_created | A datetime.datetime instance showing the creation |
date_updated | A datetime.datetime instance showing the update |
description | Description of this object. |
display_width | the target display width that this project is going to be |
due_date | The date that the entity should be delivered. |
duration | Duration of the project. |
fps | the fps of the project, it is a float value, any other types |
image_format | the image format of the current project. This value defines |
is_stereoscopic | True if the project is a stereoscopic project |
lead | the lead of the project, should be an instance of |
name | name of this object |
nice_name | The nice name of this object. |
notes | all the notes about this entity, it should be a list of Notes |
references | references are lists containing |
repository | the repository that this project should reside, should be an |
sequences | the sequences contained in this project, should be a list |
start_date | The date that this entity should start. |
status | The current status index of the object. |
status_list | The list of statuses that this object has. |
structure | The structure of the project. |
tags | a list of Tag objects which shows the related tags to the |
type | defines the type of the project, should be an instance of |
updated_by | The User who has updated |
users | the users assigned to this project. Should be a list of |
the target display width that this project is going to be displayed on, meaningfull if this project is a stereoscopic project
the fps of the project, it is a float value, any other types will be converted to float. The default value is 25.0
the image format of the current project. This value defines the output image format of the project, should be an instance of ImageFormat, can not be skipped
The code name of this object.
It accepts string or unicode values and any other kind of objects will be converted to string. In any update to the name attribute the code also will be updated to the uppercase form of the nice_name attribute. If the not initialized or given as None, it will be set to the uppercase version of the nice_name attribute. Setting the code attribute to None will reset it to the default value. The default value is the upper case form of the nice_name.
A datetime.datetime instance showing the creation date and time of this object.
A datetime.datetime instance showing the update date and time of this object.
Description of this object.
The date that the entity should be delivered.
The due_date can be set to a datetime.timedelta and in this case it will be calculated as an offset from the start_date and converted to datetime.date again. Setting the start_date to a date passing the due_date will also set the due_date so the timedelta between them is preserved, default value is 10 days
Duration of the project.
The duration is calculated by subtracting start_date from the due_date, so it is a datetime.timedelta, for now it is read-only
name of this object
The nice name of this object.
It has the same value with the name (contextually) but with a different format like, all the white spaces replaced by underscores (“_”), all the CamelCase form will be expanded by underscore (_) characters and it is always lower case.
There is also the code attribute which is simply the upper case form of nice_name if it is not defined differently (i.e set to another value).
all the notes about this entity, it should be a list of Notes objects or an empty list, None is not accepted
The date that this entity should start.
Also effects the due_date in certain conditions, if the start_date is set to a time passing the due_date it will also offset the due_date to keep the time difference between the start_date and due_date. start_date should be an instance of datetime.date and the default value is datetime.date.today()
The current status index of the object.
This is an integer value and shows the index of the Status object in the StatusList of this object.
The list of statuses that this object has.
This is the property that sets and returns the status_list attribute
a list of Tag objects which shows the related tags to the entity
the repository that this project should reside, should be an instance of Repository, can not be skipped
the sequences contained in this project, should be a list containing all of Sequence instances, when set to None it is converted to an empty list
defines the type of the project, should be an instance of ProjectType