Create a Project
You can create a new project in your workspace using the Python SDK.
import roboflow
rf = roboflow.Roboflow(api_key="YOUR_API_KEY")
workspace = rf.workspace()
project = workspace.create_project(
project_name="My New Project",
project_type="object-detection",
project_license="MIT",
)
print(project)
Parameters
project_name-- The name of the project.project_type-- The type of project (e.g.,object-detection,classification,instance-segmentation).project_license-- The license for the project (e.g.,MIT,CC BY 4.0).