Projects¶
Model objects representing projects.
-
class
renku.core.models.projects.
Project
(name=None, created=NOTHING, version='8', agent_version='pre-0.11.0', template_source=None, template_ref=None, template_id=None, template_version=None, template_metadata='{}', immutable_template_files=NOTHING, automated_update=False, client=None, *, creator=None, id=None)[source]¶ Represent a project.
Method generated by attrs for class Project.
-
property
project_id
¶ Return the id for the project.
-
property
-
class
renku.core.models.projects.
ProjectCollection
(client=None)[source]¶ Represent projects on the server.
Example
Create a project and check its name.
# >>> project = client.projects.create(name=’test-project’) # >>> project.name # ‘test-project’
Create a representation of objects on the server.
-
class
Meta
[source]¶ Information about individual projects.
-
model
¶ alias of
renku.core.models.projects.Project
-
-
class