Installation of Cybsi SDK#
Latest version and its dependencies#
We host SDK on PyPI registry.
To install it from registry, simply run the following command in your terminal of choice:
$ pip3 install cybsi-sdk
You can also get a specific version by running a command like pip3 install cybsi-sdk==2.8.0.
If you use Poetry to manage your dependencies, add the following sections to your pyproject.toml file:
....
[tool.poetry.dependencies]
cybsi-sdk = "2.8.0" # See last version of Cybsi SDK
...
Source code#
$ git clone git@github.com:cyberstudio/cybsi-sdk.git
Once you have a copy of the source, you can embed it in your own Python package, or install it into your site-packages easily:
$ cd cybsi-sdk
$ python -m pip install .