Skip to content

Wrapper class for the undocumented honeygain API

Notifications You must be signed in to change notification settings

Slluxx/Honeygain-py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

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())