crowdin /
crowdin-api-client-python
Python client library for Crowdin API
Loading repository data…
KmiQ / repository
Python library for the Coinbase Advanced Trade API.
Python library for the Coinbase Advanced Trade API.
from coinbaseadvanced.client import CoinbaseAdvancedTradeAPIClient
# Creating the client using Clould API Keys.
client = CoinbaseAdvancedTradeAPIClient.from_cloud_api_keys(API_KEY_NAME, PRIVATE_KEY)
# Listing accounts.
accounts_page = client.list_accounts()
print(accounts_page.size)
# Creating a limit order.
order_created = client.create_limit_order(client_order_id="lknalksdj89asdkl", product_id="ALGO-USD", side=Side.BUY, limit_price=".19", base_size=5)
Here is a basic example of how to use the CoinbaseWebSocketClient:
import asyncio
import time
from client_websocket import CoinbaseWebSocketClient
def handle_candle_event(event):
print(f"Received event candle: {event}")
async def main():
api_key = "your-api-key"
private_key = "-----BEGIN EC PRIVATE KEY-----\n\n-----END EC PRIVATE KEY-----"
client = CoinbaseWebSocketClient(api_key, private_key)
client.subscribe(["BTC-EUR"], "candles", callback=handle_candle_event)
while True:
time.sleep(1)
if __name__ == "__main__":
asyncio.run(main())
You can define your own callback functions to handle different types of events. The callback function will receive an event object that you can process as needed.
For each subscription to a market data channel, a separate heartbeat subscription is automatically created. This helps to ensure that the connection remains open and active.
Each subscription runs in a separate thread to ensure that multiple subscriptions can operate concurrently without blocking each other.
Before using this library, it is highly recommended to read the Coinbase API rate limits (https://docs.cdp.coinbase.com/advanced-trade/docs/ws-best-practices/) to understand the constraints and avoid exceeding the limits.
It is also recommended to follow the WebSocket best practices (https://docs.cdp.coinbase.com/advanced-trade/docs/ws-best-practices/) provided by Coinbase for optimal performance and reliability.
If possible, subscribe to one symbol per subscription to help balance the load on the Coinbase server and improve the reliability of your data stream.
pip install coinbaseadvanced
Any and all contributions are welcome! The process is simple:
pip install -r requirements.txt.python -m unittest -v.Selected from shared topics, language and repository description—not editorial ratings.
crowdin /
Python client library for Crowdin API
dcbark01 /
PI Web API client library for Python generated using the Swagger specification
rkhleics /
Python client library for the Police API
globus /
A Python client library for the Globus Online Transfer API
gleanwork /
The official Python library for the Glean API
LuminosoInsight /
Python client library for communicating with the Luminoso REST API