Create a Project
import roboflow
rf = roboflow.Roboflow(api_key="YOUR_API_KEY")
project = rf.workspace().create_project(
project_name="Flower detector",
project_type="object-detection",
project_license="MIT",
annotation="flowers",
)
print(project.id)Parameters
REST and CLI equivalents
Last updated
Was this helpful?