A Lightweight Python Package for Low-Latency and Cross-Exchange Trading.
Project description
dcex - DEX & CEX trading library
Important: No default broker tags are set. You may manually specify a broker tag within function arguments if needed.
Forked from krex, a simplified version of the ccxt Python library.
Originally created and maintained by the same contributor, this fork continues active development, building upon the original foundation with enhanced design, unified DEX + CEX support, and fixes for previously unresolved issues.
A high-performance and lightweight Python library for interacting with cryptocurrency exchanges. dcex offers synchronous and asynchronous clients across multiple major exchanges, designed for speed, modularity, and ease of use.
Scope note: dcex focuses on market data, account queries, and trading/order APIs. External withdrawal creation endpoints are not currently wrapped, and options support is limited to exchange-specific APIs rather than the unified Product Table Manager.
Installation
pip install dcex
or use uv to manage the project:
uv add dcex
Quick Start
Synchronous Usage
import dcex
client = dcex.binance()
klines = client.get_klines(product_symbol="BTC-USDT-SWAP", interval="1m")
print(klines)
Asynchronous Usage
import os
import asyncio
import dcex.async_support as dcex
from dotenv import load_dotenv
load_dotenv()
BINANCE_API_KEY = os.getenv("BINANCE_API_KEY")
BINANCE_API_SECRET = os.getenv("BINANCE_API_SECRET")
async def main():
client = await dcex.binance(
api_key=BINANCE_API_KEY,
api_secret=BINANCE_API_SECRET
)
try:
result = await client.get_income_history()
print(result)
finally:
await client.close()
if __name__ == "__main__":
asyncio.run(main())
Supported Exchanges
| Exchange | Sync Support | Async Support |
|---|---|---|
| Binance | Yes | Yes |
| Bybit | Yes | Yes |
| OKX | Yes | Yes |
| Bitget | Yes | Yes |
| Kraken | Yes | Yes |
| MEXC | Yes | Yes |
| BitMart | Yes | Yes |
| BitMEX | Yes | Yes |
| Gate.io | Yes | Yes |
| BingX | Yes | Yes |
| KuCoin | Yes | Yes |
| Hyperliquid | Yes | Yes |
| Lighter | Yes | Yes |
| Backpack | Yes | Yes |
| Aster | Yes | Yes |
Key Features
- Product Table Manager for unifying trading instruments across exchanges
- Sync and async API clients with consistent interfaces where available
- Low-overhead HTTP clients for market data, account queries, and trading workflows
- Opt-in live test suites for public, private, stateful, and generated-report endpoints
What is Product Table Manager (PTM)?
PTM is a utility that standardizes and unifies trading instrument metadata across different exchanges, making cross-exchange strategy development easier.
It is a table that contains the following columns:
| Column | Description |
|---|---|
| exchange | The exchange name |
| product_symbol | The symbol we use to identify the product, it will be the same in different exchanges. For example, BTC-USDT-SWAP is the same product in Binance and Bybit, which named BTCUSDT in Binance and BTC-USDT-SWAP in OKX. |
| exchange_symbol | The symbol that the exchange actually uses |
| product_type | The normalized product type used by dcex, e.g. spot, swap, futures |
| exchange_type | The exchange-specific product type, e.g. spot, linear, inverse, perpetual, delivery |
| base_currency | The base currency, e.g. BTC |
| quote_currency | The quote currency, e.g. USDT |
| price_precision | The price precision, e.g. 0.000001 |
| size_precision | The size precision, e.g. 0.000001 |
| min_size | The minimum size, e.g. 0.000001 |
| min_notional | The minimum notional, e.g. 0.000001 |
| size_per_contract | The size per contract. Sometimes 1 contract is not the same as 1 unit in exchanges like OKX. |
Options are not currently included in the unified PTM output. Some exchange-specific clients expose option-related parameters or market endpoints, but options are not normalized across exchanges.
How to use Product Table Manager?
In most cases, dcex handles product-symbol mapping internally. If you have a specific use case, you can use ptm to get the information you need.
from dcex.utils.common import Common
from dcex.product_table.manager import ProductTableManager
ptm = ProductTableManager.get_instance(Common.BINANCE)
product_symbol = ptm.get_product_symbol(
exchange=Common.BINANCE,
exchange_symbol="BTCUSDT",
product_type="swap",
)
print(product_symbol)
Contributing
We welcome contributions. Please see our Contributing Guide for details.
Testing
The default test suite is offline and does not require exchange API keys or network access:
uv run pytest
For live, private, stateful, and generated-report test commands, see the Contributing Guide.
Examples
Examples are under examples/sync and examples/async. See
examples/README.md for the example conventions.
License
This project is licensed under the MIT License.
Support
- Issues: Report bugs and request features on GitHub Issues.
- Discussions: Discuss ideas and share your thoughts on GitHub Discussions.
Disclaimer
Cryptocurrency trading involves significant risk. This library is provided as-is without any warranty. Users are responsible for their own trading decisions and risk management.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dcex-0.21.0.tar.gz.
File metadata
- Download URL: dcex-0.21.0.tar.gz
- Upload date:
- Size: 299.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5731f9ac53922ac7e074cc337514771754fb521b19c4829e064b62359413d507
|
|
| MD5 |
9236714279f1f8cbe4643d9a9506e7e3
|
|
| BLAKE2b-256 |
fbe7d3f409dcb8bd3104c85611d1dc113a86d6e83f4d80895565821dc82824ff
|
File details
Details for the file dcex-0.21.0-py3-none-any.whl.
File metadata
- Download URL: dcex-0.21.0-py3-none-any.whl
- Upload date:
- Size: 415.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70915c12c6593e818747499103f2a90e8c312b644d531dd70d326093f74a98d8
|
|
| MD5 |
c179cefc5d82a64431804deca17dbbdc
|
|
| BLAKE2b-256 |
da43b522ded1b7314519ce276a10b4bfb4c9aeb0738536d1eabb64d4d6ddeb86
|