def create_project(
    name: str,
    overwrite: bool = False,
    api_key: Optional[str] = None,
) -> 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 - Whether to overwrite an existing project if is already exists.
  • api_key - If specified, unify API key to be used. Defaults to the value in the

Returns:

A message indicating whether the project was created successfully.