Skip to main content

Python client for Zex exchange.

Project description

🔁 zex-sdk

A Python SDK for the Zex Exchange – a decentralized exchange (DEX) designed to deliver the speed, usability, and reliability of centralized exchanges (CEXs) while preserving the security and control of a DEX.

zex-sdk provides a seamless interface to interact with Zex Exchange's API, including essential trading, balance management, and live socket streaming capabilities.


🚀 Features

  • 📥 Place and cancel orders (single or batch)
  • 🧾 Register user accounts
  • 💰 Query account balances and user information
  • 📈 Retrieve live market prices
  • 🔄 Deposit and withdraw assets
  • 🔔 Live execution reports via WebSocket stream

📦 Installation

Install directly from PyPI:

pip install zex-sdk

⚡ Quick Start

Here's how to get started with the async Zex client in just a few lines of code.

import asyncio
from zex.sdk import AsyncClient

async def main():
    # Create a Zex client instance (testnet is True by default)
    client = await AsyncClient.create(api_key="your-api-key")

    # Example: get the price of ETH/USDT
    price = await client.get_price("ETH-USDT")
    print("Current price:", price)

asyncio.run(main())

Note: Use AsyncClient.create(...) instead of the constructor. It handles registration and setup for you.


📘 Usage Examples

Here are some common usage examples using the AsyncClient and ZexSocketManager.


✅ Place a Batch of Orders

from zex_sdk.models import PlaceOrderRequest, OrderSide

orders = [
    PlaceOrderRequest(
        base_token="ETH",
        quote_token="USDT",
        side=OrderSide.BUY,
        volume=0.5,
        price=1900.0
    ),
    PlaceOrderRequest(
        base_token="BTC",
        quote_token="USDT",
        side=OrderSide.SELL,
        volume=0.1,
        price=30000.0
    ),
]

await client.place_batch_order(orders)

❌ Cancel a Batch of Orders

# Suppose you have stored signed orders
signed_orders = [...] # List[bytes]

await client.cancel_batch_order(signed_orders)

📈 Get Current Market Price

price = await client.get_price("ETH-USDT")
print("ETH price:", price)

🔔 Listen to Execution Reports in Real-Time

from zex_sdk.socket import ZexSocketManager

async def on_execution_report(message):
    print("Execution report received:", message)

socket_manager = ZexSocketManager(client)

# Use async context manager to open and manage the socket
async with await socket_manager.execution_report_socket(on_execution_report):
await asyncio.sleep(60) # keep listening for 60 seconds

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zex_sdk-0.1.5.tar.gz (12.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

zex_sdk-0.1.5-py3-none-any.whl (2.2 kB view details)

Uploaded Python 3

File details

Details for the file zex_sdk-0.1.5.tar.gz.

File metadata

  • Download URL: zex_sdk-0.1.5.tar.gz
  • Upload date:
  • Size: 12.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.25.5 CPython/3.11.13 Linux/6.11.0-1018-azure

File hashes

Hashes for zex_sdk-0.1.5.tar.gz
Algorithm Hash digest
SHA256 a5ff235067d6e26ad7aa917a0f31308fe9b3abaf57020b2b61ff6a627da46b1b
MD5 03088c5c7fa8cd167f1a024a49516f21
BLAKE2b-256 070668ff7dbd4465be53859ba8e690f572d9a0799959a9a6c38fce29262a1c38

See more details on using hashes here.

File details

Details for the file zex_sdk-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: zex_sdk-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 2.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.25.5 CPython/3.11.13 Linux/6.11.0-1018-azure

File hashes

Hashes for zex_sdk-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 d1b94a673ff2ff2cc379891286cfc9b685d2dfc2856e2cd43f3b1d71b8779c3e
MD5 b847c186b3cb6e63d09d5b31d361084a
BLAKE2b-256 228289abcfae74b2692dc17e18f21880198ed1457ede0873cdb180b71c061009

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page