def create_project(
    name: str,
    *,
    overwrite: Union[bool, str] = False,
    api_key: Optional[str] = None,
    is_versioned: bool = True,
) -> Dict[str, str]:

source code

Creates a logging project and adds this to your account. This project will have a set of logs associated with it. Arguments:
  • name - A unique, user-defined name used when referencing the project.
  • overwrite - Controls how to handle existing projects with the same name.
  • api_key - If specified, unify API key to be used. Defaults to the value in the
  • is_versioned - Whether the project is tracked via version control.
Returns: A message indicating whether the project was created successfully.