Payyd Docs

Getting Started

SDK Downloads

SDK artifacts are hosted in Azure Storage. Download by URL or consume through package managers where available.

Python SDK v0.1.4

Download wheel

pip install \
  https://payydsdkdownlods.z13.web.core.windows.net/python/payyd_python_sdk-0.1.4-py3-none-any.whl

PHP SDK v0.1.4

Download zip

composer require payyd/payyd-php-sdk
# or download zip directly for internal distribution

.NET SDK v0.1.4

Download nupkg

NuGet source is hosted in Azure Blob Storage.

dotnet new console -n DemoApp --framework net8.0
cd DemoApp
dotnet add package Payyd.DotNet.Sdk --version 0.1.4 \
  --source https://payydsdkdownlods.z13.web.core.windows.net/msclientsdk/v3/index.json

JS SDK v0.1.4

Download tgz

npm install \
  https://payydsdkdownlods.z13.web.core.windows.net/js/payyd-js-sdk-0.1.4.tgz

Release Manifest

This table is rendered from data/sdk-manifest.json.

Language Version Artifact SHA256
Loading...

Verify Checksums

# Linux / macOS
shasum -a 256 payyd-php-sdk-0.1.4.zip
shasum -a 256 payyd_python_sdk-0.1.4-py3-none-any.whl
shasum -a 256 Payyd.DotNet.Sdk.0.1.4.nupkg
shasum -a 256 payyd-js-sdk-0.1.4.tgz

# Windows PowerShell
Get-FileHash .\payyd-php-sdk-0.1.4.zip -Algorithm SHA256
Get-FileHash .\payyd_python_sdk-0.1.4-py3-none-any.whl -Algorithm SHA256
Get-FileHash .\Payyd.DotNet.Sdk.0.1.4.nupkg -Algorithm SHA256
Get-FileHash .\payyd-js-sdk-0.1.4.tgz -Algorithm SHA256
Distribution recommendation: keep one manifest JSON file per release and have docs read links from that file. It prevents stale hardcoded links after upgrades.