Socket
Socket
Sign inDemoInstall

cvat-sdk

Package Overview
Dependencies
8
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cvat-sdk

CVAT SDK is a Javascript library. It provides you access to Javascript functions and objects that simplify server interaction and provide additional functionality like data validation and serialization.


Version published
Maintainers
1
Created

Readme

Source

SDK for Computer Vision Annotation Tool (CVAT)

NPM JavaScript Style Guide

This package provides a Javascript client library for the CVAT server. It can be useful for workflow automation and writing custom CVAT server clients.

The SDK API includes several layers:

Package documentation is available here.

Installation & Usage

To install a prebuilt package, run the following command in the terminal:

npm install cvat-sdk # or yarn add cvat-sdk

After installation, you can import the package:

import { Configuration, TasksApi } from 'cvat-sdk';

const configuration = new Configuration({
  username: CONFIG.CVAT.USERNAME,
  password: CONFIG.CVAT.PASSWORD,
});

const tasksApi = new TasksApi(configuration);
const task = await tasksApi.tasksRetrieve({
  id: 1,
});

cvat-sdk npminsights.com

Module Stats

See Rollup Visualizer

Keywords

FAQs

Last updated on 03 Jan 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc