manual throttled coin base code example
Example: coinbase api
from coinbase.wallet.client import Client
client = Client('xxxxxxxxxxx', 'xxxxxxxxxxxxxxxx') # set your api and secret keys here
# use this to create a deposit address for your coinbase account
account_id = 'xxxxx-xxx-xxx-xxxx-xxxxxxxxx' # the account is of the currency for which u want the address for
address = client.create_address(account_id)
print(str(address))