Skip to content

Getting Started

Code Coverage

The official Python client library for the Vinter.co APIs.

Installation

pip install vintersdk

Upgrade

pip install --upgrade vintersdk

API Documentation

Vinter API Documentation

Important Notes About the Library

  • The library supports both synchronous and asynchronous requests.
  • The library is still in development and will be updated frequently.
  • All the methods are documented in the source code.
  • All the methods are callable from both the synchronous and asynchronous classes.
  • The asynchronous class is called VinterAPIAsync.
  • The synchronous class is called VinterAPI.
  • The asynchronous class repeats the same methods as the synchronous class, but can be called with the await keyword.

Version of the Library

import vintersdk

print(vintersdk.__version__)

Importing the library

from vintersdk import VinterAPI, VinterAPIAsync

Creating Instances of the VinterAPI class

from vintersdk import VinterAPI

# Create instances of the VinterAPI class
vinter_multi = VinterAPI(APIKEY, "multi_assets")
vinter_single = VinterAPI(APIKEY, "single_assets")
vinter_staking = VinterAPI(APIKEY, "staking_yields")
vinter_nav = VinterAPI(APIKEY, "nav")

See the Usage section of the docs for usage examples!