Language Bindings
Language Bindings Installation
The first step is to install the language bindings for your preferred programming language
Always install from a tagged release — either the latest release (recommended) or a specific version that matches the SDK you want to access. See the Changelog for details on what’s included in each release.
⚠️ Do not install directly from main, as it may contain unstable or unreleased changes.
Repo
The latest tagged release is v4.6.1. The following languages are supported
Python (Github repo)
Go (Github repo)
PHP (Github repo)
Node.js (Github repo)
# INSTALL THE LATEST RELEASE
pip install git+https://github.com/Pexeso/[email protected]
# INSTALL A PREVIOUS RELEASE
pip install git+https://github.com/Pexeso/[email protected]# INSTALL THE LATEST RELEASE
go get github.com/Pexeso/pex-sdk-go/[email protected]
# INSTALL A PREVIOUS RELEASE
go get github.com/Pexeso/pex-sdk-go/[email protected]# INSTALL THE LATEST RELEASE
composer require pexeso/pex-sdk-php:4.6.1
# INSTALL A PREVIOUS RELEASE
composer require pexeso/pex-sdk-php:4.5.0# INSTALL THE LATEST RELEASE
npm install git+https://github.com/Pexeso/pex-sdk-js.git#v4.6.1
# INSTALL A PREVIOUS RELEASE
npm install git+https://github.com/Pexeso/pex-sdk-js.git#v4.5.0
After installing the language bindings, you are ready to install the SDK version that matches your bindings.
Last updated