coinbase-advanced-py icon indicating copy to clipboard operation
coinbase-advanced-py copied to clipboard

The Advanced API Python SDK is a Python package that makes it easy to interact with the Coinbase Advanced API. The SDK handles authentication, HTTP connections, and provides helpful methods for intera...

Results 21 coinbase-advanced-py issues
Sort by recently updated
recently updated
newest added

I'm using this API mostly with success. One pesky issue is, some of my accounts seem to be unavailable through the API when using get_accounts, but they are available when...

Bumps [black](https://github.com/psf/black) from 23.3.0 to 24.3.0. Release notes Sourced from black's releases. 24.3.0 Highlights This release is a milestone: it fixes Black's first CVE security vulnerability. If you run Black...

dependencies

Receiving a Close 1001 message from websocket is not triggering the on_close function and the associated retry logic. **Here is my connection snippet:** ` def start_websocket(self): while True: client =...

I was looking through the websocket code recently and noticed that a `Task` was being created and not stored anywhere. The async docs call this out as a problem since...

Thanks for this project: it's very useful. I'm running into an issue when calling `client.get(f"/v2/accounts/{account_id}/transactions")`. My code is fairly simple: ``` def __get_transactions(self, account_id: str) -> Dict[str, Any]: results: List[Dict[str,...

Hi, I am using a M3 chip mac to test this library, but it's doesn't for on the ARM cpu. Is there any plan to add support for ARM cpu?...

How can I use the Rest Client to connect to Coinbase Sandbox API? Thanks

I'm trying to buy BTC, but I only have BRL (Brazilian Real) in my account. Since there is no BTC-BRL trading pair, I assume I must first convert my BRL...

This adds a `py.typed` marker file to the `coinbase` package, enabling Mypy to use its type hints.

This PR adds support for the (Coinbase Advanced Trade API Sandbox](https://docs.cdp.coinbase.com/advanced-trade/docs/rest-api-sandbox) by 1. Adding a `sandbox` parameter to the `RESTBase` constructor. 2. Using that, if enabled, to let requests to...