NOTE: This project is archived. If you need access to this system or are still using it, feel free to contact me <https://hightower.space/contact/>.
Python SDK for talking with XN-Twist's API . Note: this package is not designed to be your primary interaction with the XN-Twist API. This is simply a package to aid the management of the API and is used behind the scenes in the xn-twist package.
To install the XN-Twist Python SDK, run this command in your terminal:
$ pip install xn_twist_python_sdk
This is the preferred method to install the XN-Twist Python SDK, as it will always install the most recent stable release.
If you don't have pip installed, this Python installation guide can guide you through the process.
The sources for the XN-Twist Python SDK can be downloaded from the Github repo.
You can either clone the public repository:
$ git clone git://github.com/xn-twist/xn-twist-python-sdk
Or download the tarball:
$ curl -OL https://github.com/xn-twist/xn-twist-python-sdk/tarball/master
Once you have a copy of the source, you can install it with:
$ python setup.py install
from xn_twist_python_sdk import xn_twist_python
# instantiate an instance of the XN-Twist Python SDK
xn_sdk = xn_twist_python.XnTwistSDK()
This package was created with Cookiecutter and the `fhightower/python-project-template`_ project template.