Skip to content

antwxne/CVAT_python_wrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CVAT wrapper

Description

Python wrapper to wrap CVAT API call into a class.

Example

from CVAT import CVAT
from CVAT.data_types import Task

API = CVAT(username="username", password="password", url="http://localhost:8080")

project_id: int = API.create_project("New project")
task: Task = Task("new task", project_id=project_id)
task = API.create_task(task)

Documentation

All the documentation is made with python google docstring.

Contributors

  • Antoine Desruet github-link