"""Swap Perpetual API for BingX.This module provides a comprehensive API for interacting with BingX's swap perpetual trading features.It includes functionalities for account management, market data retrieval, and trade execution.Classes: - `SwapPerpetualAPI`: Combines `AccountAPI`, `MarketAPI`, and `TradesAPI` to provide a unified interface for managing swap perpetual trading on BingX."""frombingx_py.client.swap.accountimportAccountAPIfrombingx_py.client.swap.marketimportMarketAPIfrombingx_py.client.swap.tradesimportTradesAPI
[docs]classSwapPerpetualAPI(AccountAPI,MarketAPI,TradesAPI):"""API for managing swap perpetual on BingX. This class combines functionalities from `AccountAPI`, `MarketAPI`, and `TradesAPI` to provide a unified interface for managing swap perpetual trading, including account data, market data, and trade execution. """