File size: 287 Bytes
b7d2408
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
"""CVAT API client for interacting with CVAT endpoints.

This module provides a client for making authenticated requests to the CVAT API,
organized into logical method groups for projects, tasks, jobs, and annotations.
"""

from .client import CvatApiClient

__all__ = ["CvatApiClient"]