Skip to content

Releases: luziadev/python-sdk

v1.3.0

21 May 10:27

Choose a tag to compare

Installation

# Using pip
pip install luziadev

# Using uv
uv add luziadev

# With WebSocket support
pip install luziadev[websocket]

Quick Start

from luziadev import Luzia

luzia = Luzia(api_key="lz_your_api_key")

# Get BTC price from Binance
ticker = luzia.tickers.get("binance", "BTC/USDT")
print(f"BTC/USDT: ${ticker.last}")

# List all exchanges
exchanges = luzia.exchanges.list()

Documentation

What's Changed

New Contributors

Full Changelog: https://github.com/luziadev/python-sdk/commits/v1.3.0