Python wrapper for CVAT API


Keywords
cvat, python, python-package, wrapper-api
License
MIT
Install
pip install CVAT-wrapper==1.0.0

Documentation

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