For the complete documentation index, see llms.txt. This page is also available as Markdown.

create_project

imerit_ango.sdk.SDK.

create_project(name, description, project_type)

Create a new project in your organization.

Parameters

  • name: string

    • The display name of the project to be created. This field is required and cannot be left empty.

    • Example: 'Project One'

  • description: string, optional, default ""

    • A brief description of the project.

    • Example: 'Vehicle Classification Project'

  • project_type: ProjectType, optional, default None

    • Specifies the type of the project.

    • Options:

      • ProjectType.Ango

      • ProjectType.PCT

      • ProjectType.IFrame

    from imerit_ango.models.enums import ProjectType

Returns:

  • output: dict

    • A dictionary containing the result of the operation.

    • Including a status field indicating whether the request was successful and a data field containing the response payload with updated resources produced by the operation.

How to verify in Ango Hub?

After successfully executing the create_project function, you can validate the changes directly in Ango Hub.

Navigate to: Projects

  • Confirm that the created project appears in the project list.

Changes made via the SDK are reflected in Ango Hub in near real-time. If updates are not immediately visible, please refresh the page.

Example

Create a standard Ango project:

Returns

Create a PCT project:

Last updated