A Python toolset for utilizing the Highspot API
The package can be installed via pip using the syntax below.
pip install highspot --upgradeYou may also clone the repository and install from source using below.
git clone git://github.com/jeffshurtliff/highspot.git
cd highspot/
python setup.py installThis section provides basic usage instructions for the package.
Rather than importing the base package, it is recommended that you import the primary Highspot class using the syntax
below.
from highspot import HighspotThe primary Highspot object serves many purposes, the most important being to establish a connection to the
Highspot environment with which you intend to interact. As such, when initializing an instance of the Highspot
object, you will need to pass it the API credentials it will use to authenticate so that the connection can be
established.
The API credentials can be passed directly into the Highspot object when initializing it, as
demonstrated in the example below.
hs = Highspot(username='a1b2c3d4e5', password='abc123DEF456')Refer to the changelog for version change information.
Issues can be reported within the GitHub repository.
If you would like to donate to this project then you can do so using this PayPal link.
This package is considered unofficial and is in no way endorsed or supported by Highspot.