Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 552 Bytes

Readme.md

File metadata and controls

23 lines (16 loc) · 552 Bytes

Honeygain-py

why?

Its an easy way to check your data without the need of a webbrowser on many devices. A simple class like this is easy to understand and maintain. Almost all API wrapper that make use of Honeygains API are absolute crap or incomplete and if they are not broken yet, will be in the future.

usage

from Honeygain import Honeygain

account = Honeygain()
account.login("client@email.com", "s3cr3tPass")
print(account.getBalance())

or

account = Honeygain("secretBearerToken")
print(account.getBalance())