Skip to content

Latest commit

 

History

History
executable file
·
30 lines (22 loc) · 664 Bytes

Readme.md

File metadata and controls

executable file
·
30 lines (22 loc) · 664 Bytes

Nobitex SDK

This is a simple SDK for Nobitex.

Installation

pip3 install nobipy

Usage

Import package

from nobipy import Nobitex
from nobipy import get_token

Get token

token = get_token('username', 'password')

Create a new client

nobitex = Nobitex(token='token')

Note that token is optional. You can set it later using:

nobitex.set_token('token')