from server.client.base.client import ApiKeyClient class ApolloApiMarketsClient(ApiKeyClient): async def get_market_is_supported_by_vendor(self, **params): return await self.send_request("api/check-market/", params=params) async def get_markets(self, **params): return await self.send_request("api/markets/", params=params)