Skip to content

haasome-tools/haasomeapi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

98 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HaasomeApi - Python Library For Haasonline Local API

WARNING: This Library is still in active development and far from a stable production state. Changes and updates will be frequent and the pip package will be updated constantly. Please report any problems has issues and they will be fixed immediatly.

WARNING: Has of the version 2.3.1.0 release the api has changed with haasonline software. If you are using a version prior to 2.3.1.0 you will also need to use a older version of the api. If you attempt to use version 2.3.1.0 of the haasomeapi on a haas version older than 2.3.1 it will not work correctly.

A Python library to access the Local Api on the Haasonline Trading Platform. Its light weight and extremely easy to use designed to follow the same design paradigm has the rest api and the official c# api wrapper. Making it easy to swap between the two libraries and look up endpoints if need be.

  • Api Documentation: Link
  • Quick Start Guide: Link

Install Using Pip

pip install --no-cache-dir haasomeapi

Code Example

from haasomeapi.HaasomeClient import HaasomeClient

# Connect to the haas client
haasome = HaasomeClient("http://127.0.0.1:9000", "secretkeyhere")

# Get a dict of all enabled accounts
accounts = haasome.accountDataApi.get_enabled_accounts()

# Select the First Guid
accountGuid = accounts.keys[0]

spotBuy = haasome.tradeApi.place_spot_buy_order(accountGuid, "BNB", "BTC", 0.0020852, 20)

About

Python Api To Interact With Haasonline Trading Software

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages