List Projects and Versions

You can list all Projects and Versions within a Project with the Python package.

List Projects

You can list all Projects within a Workspace using the following code:

import roboflow

rf = roboflow.Roboflow(api_key=YOUR_API_KEY_HERE)
workspace = rf.workspace(WORKSPACE_ID)

Where WORKSPACE_ID

Get a Project

# get a project
project = rf.workspace().project("PROJECT_ID")

# List all versions of a specific project
project.versions()

Last updated

Was this helpful?