You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Does anyone know if there is an alternative to do such currencies conversion by using the python API? (Or if there is a way to manually update my version from pip to include such function by using github as a source)
The text was updated successfully, but these errors were encountered:
Came here to say I'm getting the same error. I'm seeing everything listed correctly in the github source, but the pip install does not provide this as well
The only way I had it working was to manually download the whole coinbasepro github repository, previously forking to my repo. After unzipping the file, doing pip install this in order to get the function convert_stablecoin... but some other issues appeared. I had to manually cange some lines in other files:
in files: bson.init.py, bson.raw_bson.py and pymongo.collection.py, changed:
collections.Mapping ----> collections.abc.Mapping
and in files: bson.codec_options.py, pymongo.monitoring.py and pymongo.read_preferences.py, changed:
from collections import MutableMapping ------> from collections.abc import MutableMapping
Now, I don't if this is a correct way to fix this issue, but for now it's working.
And by the way, does any of you know how to use the 'convert_stablecoin' function in order to exchange easily between any SCC and any VCC?? Or maybe this isnot the appropiate function??? Using 'convert_stablecoin' I was only able to make a conversion between USD and USDC, many other options like ADA-USDC, ARPA-USDT I was not able to convert them. The next message pops out:
auth_client.convert_stablecoin(2,'USD','USDT')
output: {'message': 'Cannot convert USD to USDT'}
The last version available to download from pip3 seems not to be the same as the one available here.
The version I have throws AttributeError: "AuthenticatedClient" object has no attribute 'convert_stablecoin', when I try to access to such function.
Does anyone know if there is an alternative to do such currencies conversion by using the python API? (Or if there is a way to manually update my version from pip to include such function by using github as a source)
The text was updated successfully, but these errors were encountered: