Skip to main content

Account

On the Account page, you can edit your Username, view basic account information, and check your usage in the Usage section. You can also access the Server, Auth, and Instance tabs to view authentication settings and instance details.

Kernel

Selecting a kernel in Workbench sets the environment for your session, providing access to Python libraries at runtime.

Secrets management

Store and manage secrets that are securely encrypted in the backend.

Add and edit snippets, and copy snippets to access them. Use the following syntax to retrieve a snippet from your UDF:

import fused
fused.secrets["my_secret"]

You can also list all available secrets with:

dir(fused.secrets)

Environment variables

Environment variables in Fused are pre-configured by the Fused team. These variables can be accessed in the usual way through Python's os module:

import os
os.environ["ENV_VAR_NAME"]