create_project

Create a new dbnl Project

dbnl.create_project(
    *,
    name: str,
    description: Optional[str] = None,
) -> :

Parameters

Arguments
Description

name

description

An optional description for the dbnl Project, defaults to None. Description is limited to 255 characters.

Returns

Type
Description

The newly created dbnl Project.

Examples

import dbnl
dbnl.login()


proj_1 = dbnl.create_project(name="test_p1")

# DBNLConflictingProjectError: A DBNL Project with name test_p1 already exists.
proj_2 = dbnl.create_project(name="test_p1")

Last updated

Was this helpful?