Workspaces

Retrieve information about a workspace and its projects.

To retrieve information about a workspace and its projects, use the following Python code:

import roboflow

rf = roboflow.Roboflow(api_key=YOUR_API_KEY_HERE)

# List all projects for your workspace
workspace = rf.workspace()

Last updated