login
Authenticate dbnl SDK
dbnl.login(
*,
api_token: Optional[str] = None,
namespace_id: Optional[str] = None,
api_url: Optional[str] = None,
app_url: Optional[str] = None,
) -> NoneParameters
Arguments
Description
Examples
import dbnl
# when login() is called without specifying a token,
# it will use the `DBNL_API_TOKEN` env var
dbnl.login()
# login() can be called with a specific API Token
dbnl.login(api_token="YOUR_TOKEN_AAAA_BBBB_CCCC_DDDD")Was this helpful?

