List Projects and Versions
List Projects
import roboflow
rf = roboflow.Roboflow(api_key="YOUR_API_KEY")
workspace = rf.workspace()
for project in workspace.list_projects():
print(project["id"], project["name"], project["type"])universe_ws = rf.workspace("roboflow-100")Get a Project
project = workspace.project("my-detector")project = rf.project("my-detector")List Versions
Get a Version
CLI equivalent
Last updated
Was this helpful?