docs

APISDKCLI

Overview

Welcome to the SDK documentation. This SDK overview will help you understand how to use the SDK and its various functionality.

Python Installation pip CLI

pip install aimtera/sdk

Javascript Installation Node CLI for npm

npm install aimtera/sdk

Usage below es6

const aimtera = require('aimtera/sdk');

Usage for es6 and above

import { aimtera } from 'aimtera/sdk';

API Reference

const aimtera = require('aimtera/sdk');
let ref1 = await aimtera.reference1()
let ref2 = await aimtera.reference2()

API methods for below ES6.

import { reference1, reference2 } from 'aimtera/sdk';
let ref1 = await reference1()
let ref2 = await reference2()

API methods for ES6 and above.